-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (25 loc) · 848 Bytes
/
setup.py
File metadata and controls
27 lines (25 loc) · 848 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
#!/usr/bin/env python
from setuptools import setup
entry_points = {
"console_scripts": [
"calc_p3_fluence = storms.apps.calc_p3_fluence:main",
"make_storm_plots = storms.apps.make_storm_plots:main",
],
}
setup(
name="storms",
packages=["storms", "storms.txings_proxy", "storms.apps"],
use_scm_version=True,
setup_requires=["setuptools_scm", "setuptools_scm_git_archive"],
description="Solar storm analysis for ACIS Ops",
author="John ZuHone",
author_email="john.zuhone@cfa.harvard.edu",
url="http://github.com/acisops/storms",
install_requires=["numpy>=1.12.1", "requests", "astropy"],
classifiers=[
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
],
entry_points=entry_points,
)