-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #29 from DifferentiableUniverseInitiative/u/EiffL/…
…cleanup Cleanup to finish code update, and move notebooks around
- Loading branch information
Showing
9 changed files
with
360 additions
and
551 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
File renamed without changes.
Large diffs are not rendered by default.
Oops, something went wrong.
File renamed without changes.
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 was deleted.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,12 +1,23 @@ | ||
#!/usr/bin/env python | ||
from setuptools import setup, find_packages | ||
|
||
__version__ = '0.1' | ||
|
||
setup(name='diffhod', | ||
version=__version__, | ||
python_requires='>3.5.2', | ||
description='differentiable HOD', | ||
description="Differentiable Halo Occupation Distribution", | ||
python_requires='>3.6', | ||
author="DiffHOD developers", | ||
packages=find_packages(), | ||
install_requires=['tensorflow-probability', 'edward2'], | ||
tests_require=['halotools']) | ||
tests_require=['halotools'], | ||
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", | ||
]) |