-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.cfg
86 lines (72 loc) · 1.63 KB
/
setup.cfg
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
[metadata]
name = DarkNews
authors = [
{ name="Asli Abdullahi"},
{ name="Jaime Hoefken"},
{ name="Matheus Hostert", email="[email protected]"},
{ name="Daniele Massaro"},
]
author_email = "[email protected]"
version = attr: DarkNews.__version__
license = "MIT"
description = A lightweight nu-A scattering generator for heavy neutral lepton production
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/mhostert/DarkNews-generator
classifiers =
Programming Language :: Cython
Programming Language :: Python :: 3
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Intended Audience :: Science/Research
Topic :: Scientific/Engineering
[options]
zip_safe = False
package_dir =
=src
packages = find:
python_requires = >=3.8
install_requires =
dill
numpy
scipy
pandas>=1.0
vegas>=5.1.1
Particle
pyparsing
matplotlib
setup_requires =
cython
numpy
[options.packages.find]
where = src
[options.package_data]
* =
include/*/*.dat
include/*/*.txt
include/*/*.py
include/assets/*
*.pyx
DarkNews = py.typed
[options.extras_require]
parquet =
pyarrow
pyhepmc =
pyhepmc>=2.7.1
testing =
pytest>=6.0
pytest-cov>=2.0
tox>=3.24
pyarrow
pyhepmc>=2.7.1
[options.entry_points]
console_scripts =
dn_gen = DarkNews.scripts:dn_gen
dn_get_examples = DarkNews.scripts:dn_get_examples
[flake8]
max-line-length = 180