-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Francois
committed
May 10, 2020
1 parent
8bcb03e
commit ff8ccff
Showing
2 changed files
with
26 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,31 @@ | ||
#!/usr/bin/env python | ||
import io | ||
import os | ||
from setuptools import setup, find_packages | ||
|
||
setup(name='jax_cosmo', | ||
version='0.0.1', | ||
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', | ||
author='JAX Cosmo developers', | ||
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'] | ||
) | ||
tests_require = ['pyccl'], | ||
use_scm_version=True, | ||
setup_requires=['setuptools_scm'], | ||
classifiers=[ | ||
'Programming Language :: Python :: 3.6', | ||
'Programming Language :: Python :: 3.7', | ||
'Programming Language :: Python :: 3.8', | ||
'License :: OSI Approved :: MIT License', | ||
'Operating System :: MacOS', | ||
'Operating System :: POSIX :: Linux', | ||
'Topic :: Scientific/Engineering', | ||
'Intended Audience :: Science/Research', | ||
'Intended Audience :: Developers', | ||
]) |