-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
29 lines (25 loc) · 966 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
29
import setuptools
import os
with open("README.rst", "r") as fh:
long_description = fh.read()
with open('MiraTitanHMFemulator/VERSION', 'r') as version_file:
version = version_file.read().strip()
setuptools.setup(
name="MiraTitanHMFemulator",
version=version,
author="Sebastian Bocquet",
author_email="[email protected]",
description="Mira-Titan Universe: Halo mass function emulator",
long_description=long_description,
long_description_content_type="text/x-rst",
url="https://github.com/SebastianBocquet/MiraTitanHMFemulator",
packages=['MiraTitanHMFemulator'],
package_data = {'MiraTitanHMFemulator': ['VERSION', 'data/*.npy', 'tests/*py']},
classifiers=[
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
install_requires = ['numpy', 'scipy'],
)