-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
executable file
·59 lines (56 loc) · 1.56 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
#!/usr/bin/env python
from setuptools import find_packages
from setuptools import setup
PACKAGENAME = 'costools'
setup(
name=PACKAGENAME,
use_scm_version={'write_to': 'costools/version.py'},
setup_requires=['setuptools_scm'],
install_requires=[
'astropy',
'calcos',
'numpy',
'stsci.tools',
],
extras_require={
'docs': [
'sphinx',
'numpydoc',
],
'test': [
'pytest',
'pytest-cov',
],
},
packages=find_packages(),
package_data={
PACKAGENAME: [
'pars/*',
'*.help',
],
},
entry_points={
'console_scripts': [
'timefilter = {0}.timefilter:main'.format(PACKAGENAME),
'add_cos_s_region = {}.add_cos_s_region:call_main'.format(PACKAGENAME),
],
},
scripts=[
'costools/add_cos_s_region.py',
],
author='Warren Hack, Nadezhda Dencheva, Phil Hodge',
author_email='[email protected]',
description='Tools for COS (Cosmic Origins Spectrograph)',
long_description='README.md',
long_description_content_type='text/x-rst',
url='https://github.com/spacetelescope/costools',
license='BSD',
classifiers=[
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Scientific/Engineering :: Astronomy',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)