-
Notifications
You must be signed in to change notification settings - Fork 0
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 #12 from lpin0002/developer
Fixing pypi desc
- Loading branch information
Showing
1 changed file
with
9 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,15 +4,22 @@ | |
import os | ||
import time | ||
|
||
|
||
# Read the contents of your README file | ||
with open("README.md", "r", encoding="utf-8") as fh: | ||
long_description = fh.read() | ||
|
||
|
||
setup(name='GammaBayes', | ||
description='A package for Bayesian dark matter inference', | ||
url='https://github.com/lpin0002/GammaBayes', | ||
author='Liam Pinchbeck', | ||
author_email='[email protected]', | ||
license="MIT", | ||
version='0.1.7', | ||
version='0.1.8', | ||
packages=find_packages(), | ||
|
||
long_description=long_description, # This is the long description, read from README.md | ||
long_description_content_type="text/markdown", | ||
# For a lot of the DM spectral classes we require that dict types are ordered | ||
python_requires='>=3.6', | ||
install_requires=[ | ||
|