-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.json
41 lines (41 loc) · 1.23 KB
/
setup.json
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
{
"name": "mathusla-tracker",
"version_file": "tracker/_version.py",
"description": "MATHUSLA Tracking Algorithm",
"long_description_file": "README.md",
"long_description_content_type": "text/markdown",
"author": "Brandon Gomes",
"author_email": "[email protected]",
"url": "https://github.com/MATHUSLA/tracker",
"packages": {
"exclude": ["tests"]
},
"python_requires": ">=3.7.0",
"install_requires": [
"pytest",
"uptrack",
"scikit-hep",
"pint",
"unyt",
"uncertainties",
"aenum",
"uproot",
"iminuit",
"lxml"
],
"include_package_data": true,
"license": "MIT",
"classifiers": [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Development Status :: 1 - Planning",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Software Development :: Libraries",
"Topic :: Utilities"
]
}