-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (20 loc) · 737 Bytes
/
setup.py
File metadata and controls
23 lines (20 loc) · 737 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup, find_packages
import os
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = "localization2020",
version = "1.0.0",
author = "GT IEEE Robotics",
author_email = "ieee_president@gmail.com",
description = ("The localization library for the 2020 SoutheastCon robotics competition."),
url = "https://github.com/GT-IEEE-Robotics/Localization2020",
py_modules=['localize'],
long_description=read('README.md'),
long_description_content_type='text/markdown',
python_requires='>=3.5',
install_requires=['numpy',
'pygame',
'vision2020',
'simulator2020']
)