-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
executable file
·62 lines (54 loc) · 2.08 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
#!/usr/bin/env python3
import os
import re
import sys
import setuptools
SRC = os.path.abspath(os.path.dirname(__file__))
def get_version():
with open(os.path.join(SRC, 'kspalculator/__init__.py')) as f:
for line in f:
m = re.match("__version__ = '(.*)'", line)
if m:
return m.group(1)
raise SystemExit("Could not find version string.")
if sys.version_info.major == 2:
if sys.version_info < (2, 7):
sys.exit('Python version not supported.')
entry_points = None
install_requires = ['enum34>=1.0']
print("Note that you need Python3 to execute kspalculator script.")
elif sys.version_info.major == 3:
if sys.version_info < (3, 4):
sys.exit('Python version not supported.')
entry_points = {'console_scripts': ['kspalculator=kspalculator.__main__:main']}
install_requires = None
else:
sys.exit('Python version not supported.')
setuptools.setup(
name='kspalculator',
version=get_version(),
packages=['kspalculator'],
url='https://kspalculator.readthedocs.io/',
license='MIT',
author='Alexander Graf, André Koch-Kramer',
author_email='mail@agraf.me, koch-kramer@web.de',
description='Determine the best rocket propulsion designs for one stage of a rocket, given a '
'set of constraints and preferences (Kerbal Space Program).',
long_description=open(os.path.join(SRC, 'README.rst')).read(),
entry_points=entry_points,
zip_safe=True,
install_requires=install_requires,
test_suite="test",
keywords='ksp kerbal space program kerbalspaceprogram calculator calculate optimize engine fuel propellant',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3 :: Only'
]
)