forked from hpparvi/ldtk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
27 lines (25 loc) · 973 Bytes
/
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
from numpy.distutils.core import setup, Extension
from numpy.distutils.misc_util import Configuration
import distutils.sysconfig as ds
long_description = ''
setup(name='LDTk',
version='0.9',
description='Toolkit to calculate stellar limb darkening profiles for arbitrary filters.',
long_description=long_description,
author='Hannu Parviainen',
author_email='hpparvi@gmail.com',
url='https://github.com/hpparvi/LDTk',
package_dir={'ldtk':'src'},
packages=['ldtk'],
install_requires=["numpy"],
license='GPLv2',
classifiers=[
"Topic :: Scientific/Engineering",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Operating System :: OS Independent",
"Programming Language :: Python"
]
)