-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (25 loc) · 753 Bytes
/
setup.py
File metadata and controls
27 lines (25 loc) · 753 Bytes
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
import setuptools
long_message = 'FIRESONG: the FIRst Extragalactic Simulation Of Neutrinos and Gamma-rays'
version = "1.9"
setuptools.setup(
name="firesong",
version=version,
author="Tung, C.F. et al.",
author_email="",
description="Code for simulationg populations of neutrino sources",
long_description=long_message,
long_description_content_type="text/markdown",
url="https://github.com/icecube/FIRESONG",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
],
python_requires='>=3.8',
install_requires=[
#'CosmoloPy>=0.4',
'coverage>=5.4',
'numpy>=1.22.0',
'scipy>=1.2.3',
]
)