-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
32 lines (29 loc) · 1.04 KB
/
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
#!/usr/bin/env python
import pathlib
from setuptools import setup
# Parent directory
HERE = pathlib.Path(__file__).parent
# The readme file
README = (HERE / "README.md").read_text()
setup(
name='PETITE',
package_dir={'PETITE':'src'},
version="1.0.0",
author ="Nikita Blinov, Patrick J. Fox, Kevin J. Kelly, Pedro A.N. Machado, Ryan Plestid",
author_email="[email protected], [email protected], [email protected], [email protected], [email protected]",
description="Package for Electromagnetic Transitions in Thick-target Environments\
Allows for simulations of standard model electromagnetic showers and\
production of new-physics particles in beam-dump environments.",
long_description=README,
long_description_content_type="text/markdown",
url="https://github.com/kjkellyphys/PETITE",
install_requires=[
"vegas>=5.4.2",
"tqdm",
"numpy"#==1.24"
],
extras_require={
"interactive": ["nbstripout", "matplotlib", "jupyter"]
},
packages=["PETITE"],
)