forked from samconnolly/DELightcurveSimulation
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
29 lines (28 loc) · 1.21 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
#!/usr/bin/env python
if __name__ == '__main__':
from distutils.core import setup
setup( name="DELCgen",
version="0.3alpha",
description="DELCgen: Simulating Lightcurves",
author="Sam Connolly",
author_email="[email protected]",
url="https://github.com/samconnolly/DELightcurveSimulation",
license="Academic Free License",
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Operating System :: OS Independent',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Academic Free License (AFL)',
'Programming Language :: Python',
'Topic :: Scientific/Engineering',
],
requires=['NumPy (>=1.3)',],
long_description="""
Python implementation of the light curve simulation algorithm from
Emmanoulopoulos et al., 2013, Monthly Notices of the Royal
Astronomical Society, 433, 907. Produces lightcurves with
a given PSD and PDF.
""",
py_modules=["DELCgen"]
)