-
Notifications
You must be signed in to change notification settings - Fork 27
/
setup.py
44 lines (40 loc) · 1.26 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
43
44
from setuptools import setup, find_packages
req = open('requirements.txt')
REQUIREMENTS = req.readlines()
req.close()
# Dynamically retrieve the version from the module
version_string = __import__('salvius').__version__
setup(
name='salvius',
version=version_string,
url='https://github.com/gunthercox/salvius',
description='Open source humanoid robot.',
author='Gunther Cox',
author_email='[email protected]',
packages=find_packages(),
package_dir={'salvius': 'salvius'},
include_package_data=True,
install_requires=REQUIREMENTS,
license='MIT',
zip_safe=True,
platforms=['any'],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Environment :: Console',
'Environment :: Web Environment',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
test_suite='tests',
entry_points={
'console_scripts': [
'salvius=salvius.__main__:main'
],
}
)