-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathsetup.py
42 lines (40 loc) · 1.57 KB
/
setup.py
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
33
34
35
36
37
38
39
40
41
42
# Dirty hack to make tests work in Vagrant env
# Remove once this is fixed: http://bugs.python.org/issue8876
import os
del os.link
from setuptools import setup, find_packages
setup(
name="bot",
version="1.0.1",
description="NCSU IEEE Robotics Team Codebase",
url="https://github.com/IEEERobotics/bot2014/",
author="NCSU IEEE Robotics",
author_email="[email protected]",
# See for more classifer options: http://goo.gl/8jtDH4
classifiers=[
"Development Status :: 5 - Production/Stable",
"Natural Language :: English",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.2",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"License :: OSI Approved :: BSD License",
],
keywords="NCSU IEEE Robotics robot bot hardware",
packages=find_packages(),
# TODO: Fix for this style test layout
test_suite="tests",
# See for more install_requires info: http://goo.gl/vCOKSw
# See for more install_requires info: http://goo.gl/5zQKIF
# TODO: List all known minimum requirements
install_requires=["pyyaml"],
# TODO: List dev and test env requirements
extras_require={
"dev": [],
"test": ["tox", "flake8"],
},
# TODO: Do we need to specify any package data?
# ^^See: https://github.com/pypa/sampleproject/blob/master/setup.py#L81
# TODO: Do we need to define an entry point?
# ^^See: https://github.com/pypa/sampleproject/blob/master/setup.py#L95
)