-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
27 lines (23 loc) · 915 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
#!/usr/bin/env python
VER = "1.1.0-alpha"
reqs = ["fire", "h5py", "numpy", "scikit-learn", "tqdm", "PyYAML"]
import setuptools
setuptools.setup(
name="ndlar_39Ar_reco",
version=VER,
author="Sam Fogarty",
author_email="samuel.fogarty@colostate.edu",
description="Reconstruction code for low-energy activity in ND-LAr prototypes",
url="https://github.com/sam-fogarty/ndlar_39Ar_reco",
packages=setuptools.find_packages(),
scripts=["charge_reco/charge_clustering.py"],
install_requires=reqs,
classifiers=[
"Development Status :: 1 - Pre-Alpha",
"Intended Audience :: by End-User Class :: Developers",
"Operating System :: Grouping and Descriptive Categories :: OS Independent (Written in an interpreted language)",
"Programming Language :: Python",
"Topic :: Scientific/Engineering :: Physics"
],
python_requires='>=3.6.8',
)