forked from spacetelescope/fitsblender
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
55 lines (50 loc) · 1.38 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
#!/usr/bin/env python
from setuptools import find_packages
from setuptools import setup
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
PACKAGENAME = 'fitsblender'
setup(
name=PACKAGENAME,
use_scm_version=True,
setup_requires=['setuptools_scm'],
install_requires=[
'astropy>=5.0.4',
'numpy',
'stsci.tools',
],
extras_require={
'docs': [
'sphinx',
'numpydoc',
],
'test': [
'pytest',
'pytest-cov',
'codecov',
],
},
packages=find_packages(),
package_data={
PACKAGENAME: [
'*.rules',
'pars/*',
'tests/*.fits',
],
},
author='Michael Droettboom',
author_email='[email protected]',
description='Aggregate values in FITS headers',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/spacetelescope/fitsblender',
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',
],
)