-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (26 loc) · 1.07 KB
/
Copy pathsetup.py
File metadata and controls
27 lines (26 loc) · 1.07 KB
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 setuptools import setup, find_packages
setup(
name = 'lightcurve',
url = 'http://justincely.github.io/lightcurve/',
version = '0.6.2',
description = 'Create lightcurves from HST/COS and HST/STIS data',
author = 'Justin Ely',
author_email = 'ely@stsci.edu',
keywords = ['astronomy'],
classifiers = ['Programming Language :: Python',
'Programming Language :: Python :: 3',
'Development Status :: 1 - Planning',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Astronomy',
'Topic :: Scientific/Engineering :: Physics',
'Topic :: Software Development :: Libraries :: Python Modules'],
packages = find_packages(),
install_requires = ['astropy',
'numpy>=1.9',
'scipy',
'numba>=0.24.0',
'llvmlite>=0.9.0',
'nose',
'six'],
scripts = ['scripts/lightcurve'],
)