forked from ynashed/larnd-sim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
24 lines (21 loc) · 829 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
#!/usr/bin/env python
import setuptools
VER = "0.1.0"
setuptools.setup(
name="larndsim",
version=VER,
author="DUNE collaboration",
author_email="[email protected]",
description="Simulation framework for the DUNE LArND",
url="https://github.com/DUNE/larnd-sim",
packages=setuptools.find_packages(),
install_requires=["numpy", "pytest", "numba==0.52", "larpix-control", "larpix-geometry", "tqdm", "fire", "cupy"],
classifiers=[
"Development Status :: 2 - 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.7',
)