-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (27 loc) · 684 Bytes
/
setup.py
File metadata and controls
28 lines (27 loc) · 684 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
28
from setuptools import setup
setup(
name='cosmo_learn',
version='0.0.1',
description='Cosmological simulations and learning in one',
url='https://github.com/reggiebernardo/cosmo_learn',
author='Reginald Christian Bernardo',
author_email='reginaldchristianbernardo@gmail.com',
license='MIT',
packages=['cosmo_learn'],
install_requires=[
'numpy',
'scipy==1.13.1',
'scikit-learn==1.6.1',
'astropy',
'numdifftools',
'multiprocess',
'corner',
'emcee',
'tqdm',
'torch',
'torchvision',
'torchaudio',
'refann'
],
python_requires='==3.10.*',
)