-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
33 lines (32 loc) · 920 Bytes
/
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
from setuptools import setup
import os
setup(
name="nasagamma",
use_scm_version={"write_to": "nasagamma/version.py"},
description="Gamma spectroscopy tools",
url="https://github.com/mauricioAyllon/NASA-gamma",
author="Mauricio Ayllon Unzueta",
author_email="[email protected]",
packages=["nasagamma"],
scripts=["gammaGUI-qt"],
package_data={
"nasagamma": [
os.path.join("nasagamma", "data", "*txt"),
os.path.join("nasagamma", "data", "*csv"),
os.path.join("nasagamma", "*ui"),
]
},
install_requires=[
"docopt >= 0.6.2",
"lmfit > 1.0.2",
"dateparser >= 1.1.1",
"pandas > 1.4.2",
"matplotlib >= 3.6.3",
"mplcursors >= 0.5.2",
"pyarrow >= 11.0.0",
"natsort >= 7.1.1",
"plotly >= 5.22.0",
"scipy >= 1.9.3",
"PyQtWebEngine"
],
)