-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (23 loc) · 851 Bytes
/
setup.py
File metadata and controls
25 lines (23 loc) · 851 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
from setuptools import setup, find_packages
import os
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = "agent2020",
version = "1.0.0",
author = "GT IEEE Robotics",
author_email = "ieee_president@gmail.com",
description = ("The agent script to run the robot for the 2020 SoutheastCon robotics competition."),
url = "https://github.com/GT-IEEE-Robotics/Agent2020",
py_modules=['agent'],
long_description=read('README.md'),
long_description_content_type='text/markdown',
python_requires='>=3.5',
install_requires=['argparse',
'pyyaml',
'simulator2020',
'interfaces2020',
'planning2020',
'vision2020',
'localization2020']
)