-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
37 lines (36 loc) · 828 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
36
37
from setuptools import setup, find_packages
setup(
name="ddmisid",
version="0.1",
packages=find_packages(),
include_package_data=True,
install_requires=[
"numpy",
"pandas",
"scipy",
"awkward",
"matplotlib",
"boost-histogram",
"hist",
"uproot",
"iminuit",
"numba",
"pyhf",
"tqdm",
"tabulate",
"pyyaml",
"snakemake",
"click",
"SciencePlots",
"uncertainties",
"cabinetry",
"polars",
"pydantic>=2.0.0",
"pytest",
# "snakemake", # recommended install via mamba and running `pip install -e .` after loading mamba environment
],
entry_points="""
[console_scripts]
ddmisid-engine=ddmisid.cli:cli
""",
)