Skip to content

Commit

Permalink
Adds link to the readme
Browse files Browse the repository at this point in the history
  • Loading branch information
Francois committed May 10, 2020
1 parent 8bcb03e commit ff8ccff
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ F = - jax.hessian(likelihood)(cosmo)
This is how you can compute gradients and hessians of any functions in `jax-cosmo`,
all of this without any finite differences.

Check out a full example here:
Check out a full example here: [![colab link](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/DifferentiableUniverseInitiative/jax_cosmo/blob/master/notebooks/jax-cosmo-intro.ipynb)

## What is JAX?

Expand Down
30 changes: 25 additions & 5 deletions setup.py
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',
])

0 comments on commit ff8ccff

Please sign in to comment.