-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (35 loc) · 1.2 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
from setuptools import setup
setup(
name="ghosts",
author="Johan Bregeon",
author_email="bregeon@in2p3.fr",
url = "https://github.com/bregeon/ghosts",
packages=["ghosts"],
description="Analysis of Rubin telescope ghost images",
setup_requires=['setuptools_scm'],
long_description=open("README.md").read(),
package_data={"": ["README.md", "LICENSE"]},
use_scm_version={"write_to":"ghosts/_version.py"},
include_package_data=True,
classifiers=[
"Development Status :: 1 - Beta",
"License :: OSI Approved :: GPL License",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python",
],
install_requires=["batoid==0.4.0",
"matplotlib",
"numpy",
"scipy",
"pandas",
"openpyxl",
"pyyaml",
"seaborn",
"pyarrow",
"tabulate",
"scikit-optimize",
"iminuit",
"setuptools_scm"]
)