-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
35 lines (31 loc) · 876 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
34
35
#!/usr/bin/env python
import setuptools
VER = "0.0.1"
reqs = ["numpy",
"scipy",
"plotly",
"pyaml",
"h5py",
"larcv",
"torch",
# "MinkowskiEngine",
]
setuptools.setup(
name="LArDRIP",
version=VER,
author="Daniel D. and others",
author_email="[email protected]",
description="The LArTPC Dead Region Inference Project",
url="https://github.com/DanielMDouglas/LArDRIP",
packages=setuptools.find_packages(),
install_requires=reqs,
classifiers=[
"Development Status :: 1 - Pre-Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Physics"
],
python_requires='>=3.2',
)