-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (25 loc) · 981 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
# from setuptools import setup, find_packages
# with open("README.md") as f:
# _long_description = f.read()
# setup(
# name="blackthorn",
# version="0.1.0",
# description="Package for generating spectrum from RH-neutrinos",
# long_description=_long_description,
# long_description_content_type="text/markdown",
# author="Logan A. Morrison",
# author_email="loganmorrison99@gmail.com",
# packages=find_packages(exclude=["notebooks", "old", "test"]),
# package_data={},
# python_requires=">=3.8",
# install_requires=["numpy>=1.20"],
# extras_require={"jax": ["jax>=0.3.4", "jaxlib>=0.3.2", "chex>=0.1"]},
# keywords=["high-energy-physics", "quantum-field-theory"],
# zip_safe=True,
# classifiers=[
# "Programming Language :: Python :: 3.7",
# "Programming Language :: Python :: 3.8",
# "Programming Language :: Python :: 3.9",
# "Programming Language :: Python :: 3.10",
# ],
# )