-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (35 loc) · 1.5 KB
/
setup.py
File metadata and controls
36 lines (35 loc) · 1.5 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
28
29
30
31
32
33
34
35
36
import setuptools
from pathlib import Path
spike_home = Path(__file__).parent
pypi_descrip = (spike_home / "README.md").read_text()
setuptools.setup(
name = "spike-psf",
version = "1.2.4",
author = "Ava Polzin",
author_email = "apolzin@uchicago.edu",
description = "Drizzle/resample HST, JWST, and Roman PSFs for improved analyses.",
packages = ["spike", "spike/psf", "spike/psfgen", "spike/tools",
"spike/jwstcal", "spike/romancal", "spike/stcal", "spike/stpipe"],
url = "https://github.com/avapolzin/spike",
license = 'MIT',
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Scientific/Engineering :: Astronomy",
"Topic :: Scientific/Engineering :: Physics"],
python_requires = ">=3.11",
install_requires = ["acstools", "asdf", "astropy", "crds", "drizzle",
"drizzlepac @ git+https://github.com/spacetelescope/drizzlepac.git",
"gwcs", "jsonschema", "matplotlib", "numpy", "photutils", "psutil", "pyyaml",
"roman-datamodels==0.22.0", "scipy", "spherical-geometry", "stdatamodels",
"tweakwcs", "stpsf"],
extras_require = {'stdep':['jwst', 'romancal', 'stcal', 'stpipe']},
package_data={'spike': ['configs/*/*']},
long_description=pypi_descrip,
long_description_content_type='text/markdown',
project_urls={'source':"https://github.com/avapolzin/spike",
'documentation':"https://spike-psf.readthedocs.io"},
)