-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (26 loc) · 835 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
from setuptools import setup
packages = ['CEmulator',
'CEmulator/emulator',
'CEmulator/GaussianProcess',
'CEmulator/hankl',]
setup(
name='CEmulator',
version='0.1.0',
author='Zhao Chen',
author_email='[email protected]',
description='A python package for CSST cosmological emulator, which can predict various cosmological statistics within miliseconds.',
packages=packages,
url='https://github.com/czymh/csstemu',
install_requires=[
'numpy',
'scipy',
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
package_dir={'euclidemu2': 'CEmulator'},
package_data={'CEmulator': ['data/*']},
include_package_data=True,
)