-
Notifications
You must be signed in to change notification settings - Fork 20
/
setup.py
36 lines (34 loc) · 1.25 KB
/
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
30
31
32
33
34
35
36
from setuptools import find_packages
from setuptools import setup
from io import open
# read the contents of the README file
with open('README.md', encoding="utf-8") as f:
long_description = f.read()
setup(
name='flowpm',
description='Particle Mesh Simulation in TensorFlow',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/DifferentiableUniverseInitiative/flowpm',
author='Chirag Modi, FlowPM developers',
author_email='modichirag@berkeley.edu',
license='MIT',
packages=find_packages(),
install_requires=[
'astropy', 'scipy', 'mesh-tensorflow', 'tensorflow_probability',
'bigfile', 'tensorflow_addons'
],
tests_require=['fastpm', 'lenstools'],
extras_require={
'testing': ['fastpm', 'lenstools'],
},
use_scm_version=True,
setup_requires=['setuptools_scm'],
classifiers=[
'Development Status :: 3 - Alpha', 'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Scientific/Engineering :: Physics'
],
keywords='cosmology machine learning')