forked from DifferentiableUniverseInitiative/jax_cosmo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (32 loc) · 1.15 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
#!/usr/bin/env python
import io
import os
from setuptools import find_packages
from setuptools import setup
this_directory = os.path.abspath(os.path.dirname(__file__))
with io.open(os.path.join(this_directory, "README.md"), encoding="utf-8") as f:
long_description = f.read()
setup(
name="jax-cosmo",
description="Differentiable Python Cosmology Library",
long_description=long_description,
long_description_content_type="text/markdown",
author="jax-cosmo developers",
packages=find_packages(),
url="https://github.com/DifferentiableUniverseInitiative/jax_cosmo",
install_requires=["jax", "jaxlib"],
tests_require=["pyccl"],
use_scm_version=True,
setup_requires=["setuptools_scm"],
classifiers=[
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux",
"Topic :: Scientific/Engineering",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
],
)