-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (27 loc) · 866 Bytes
/
setup.py
File metadata and controls
28 lines (27 loc) · 866 Bytes
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
#!/usr/bin/env python
from setuptools import setup
setup(
name="pyROS",
packages=["pyROS"],
version="0.1.0",
description="",
author="Eliza C. Diggins",
author_email="eliza.diggins@utah.edu",
url="https://github.com/Wik-Group/pyROS",
download_url="https://github.com/Wik-Group/pyROS/tarball/0.1.0",
install_requires=["numpy", "scipy", "astropy", "astroquery", "rich"],
classifiers=[
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Visualization",
],
include_package_data=True,
scripts=[
"scripts/pyros",
"scripts/pyrosXREF",
"scripts/eRASS1/XREFeRASS1build",
"scripts/eRASS1/XREFeRASS1cat",
"scripts/eRASS1/XREFeRASS1summary",
],
)