-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
33 lines (30 loc) · 1.06 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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(name='transitlib',
version='0.1',
description="Transit Analytical Curve maker",
author="Vergil Yotov",
author_email="[email protected]",
url="http://github.com/acshu/transit-lib",
packages=find_packages(),
scripts=['transit','transit.bat'],
platforms="All",
license="GPL",
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Natural Language :: English',
'Operating System :: Unix',
'Operating System :: Microsoft',
'Operating System :: Other OS',
'Programming Language :: Python',
'Programming Language :: Python :: 2.5',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Topic :: Scientific/Engineering :: Astronomy',
'Topic :: Utilities'
]
)