-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
45 lines (44 loc) · 1.37 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
45
from setuptools import setup, find_packages
setup(
name="earthstar",
version="0.0.1",
url='http://github.com/hodgestar/earthstar-control-software',
license='MIT',
description="Earthstar control software and simulator.",
long_description=open('README.rst', 'r').read(),
author='Simon Cross',
author_email='[email protected]',
packages=find_packages(),
include_package_data=True,
install_requires=[
'click',
'numpy',
'randomcolor',
'zmq',
],
extras_require={
'simulator': ['faulthandler', 'pygame_cffi', 'PyOpenGL'],
'api': ['flask', 'flask_boostrap'],
},
entry_points={ # Optional
'console_scripts': [
'earthstar-api=earthstar.api:main',
'earthstar-effectbox=earthstar.effectbox:main',
'earthstar-simulator=earthstar.simulator:main',
],
},
scripts=[
'bin/earthstar-runner',
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX',
'Operating System :: Microsoft :: Windows',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Topic :: Games/Entertainment',
],
)