-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (29 loc) · 1.07 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
import setuptools
# Get requirements from requirements.txt, stripping the version tags
with open("requirements.txt") as f:
requires = [r.split("/")[-1] if r.startswith("git+") else r for r in f.read().splitlines()]
# Get the long description from the README file
with open("README.md") as file:
readme = file.read()
setuptools.setup(
name="saltax",
author="Lanqing Yuan",
description="Salting analysis framework for XENONnT.",
long_description=readme,
version="0.1.5",
install_requires=requires,
setup_requires=["pytest-runner"],
tests_require=requires + ["pytest", "hypothesis", "boltons"],
python_requires=">=3.9",
packages=setuptools.find_packages(),
classifiers=[
"Development Status :: 3 - Alpha",
"License :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Intended Audience :: Science/Research",
"Programming Language :: Python",
"Topic :: Scientific/Engineering :: Physics",
],
)