-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (19 loc) · 840 Bytes
/
setup.py
File metadata and controls
22 lines (19 loc) · 840 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from setuptools import setup, find_packages
import numpy
with open("README.md", "r") as f:
documentation = f.read()
setup(
name = 'CAMELS_library',
version = "0.6",
author = 'Francisco Villaescusa-Navarro',
description = "Python routines to analyze the data from the simulations of the Cosmology and Astrophysics with MachinE Learning Simulations (CAMELS) project",
url = "https://github.com/franciscovillaescusa/CAMELS",
license = 'MIT',
long_description_content_type = "text/markdown",
long_description = documentation,
packages=find_packages(where="library/"),
package_dir={"": "library"},
install_requires=['scipy', 'h5py', 'Pylians', 'tables',
'pynbody==1.2.3', 'tqdm'],
)