-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (26 loc) · 1.01 KB
/
setup.py
File metadata and controls
29 lines (26 loc) · 1.01 KB
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
# Following https://www.kdnuggets.com/pip-install-you-a-beginners-guide-to-creating-your-python-library
from setuptools import find_packages, setup
from hayashi.version import __version__
with open('README.md') as f:
long_description = f.read()
setup(
name='hayashi',
packages=find_packages(),
version=__version__,
description='Python library for computing the number of absorption features of the 21 cm forest in a semianalytic formalism.',
long_description=long_description,
long_description_content_type="text/markdown",
author='Pablo Villanueva-Domingo',
author_email='pablo.villanueva.domingo@gmail.com',
install_requires=["numpy",
"scipy",
"tqdm",
"colossus"],
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License', # License type
'Operating System :: OS Independent',
],
python_requires='>=3.6',
url='https://github.com/PabloVD/HAYASHI',
)