forked from cosimoNigro/agnpy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
25 lines (23 loc) · 850 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="agnpy",
version="0.1.0",
author="Cosimo Nigro",
author_email="[email protected]",
description="Modelling jetted Active Galactic Nuclei radiative processes with python",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/cosimoNigro/agnpy",
packages=setuptools.find_packages(),
include_package_data=True,
classifiers=[
"Programming Language :: Python :: 3",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
],
install_requires=["astropy>=4.0", "numpy>=1.17", "scipy>=1.2", "matplotlib"],
python_requires=">=3.6",
)