-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (29 loc) · 687 Bytes
/
setup.py
File metadata and controls
32 lines (29 loc) · 687 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#!/usr/bin/env python3
"""
Amazon Robotics Hackathon - Setup Script
This script installs the ar_hackathon package.
"""
from setuptools import setup, find_packages
setup(
name="ar_hackathon",
version="0.1.0",
packages=find_packages(),
install_requires=[
"networkx",
"plotly",
"numpy",
"bokeh",
"kaleido",
"scipy",
"requests"
],
scripts=[
"scripts/run_game.py",
"scripts/visualize.py",
],
author="Amazon Robotics",
author_email="example@amazon.com",
description="Amazon Robotics Hackathon Package",
keywords="amazon, robotics, hackathon",
python_requires=">=3.7",
)