forked from pymc-devs/pymc
-
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.
fix tarball generation as 3.9.1 release (pymc-devs#3970)
+ removes docs/* from the tarball to fix PyPI size limits (setup.py and MANIFEST.in) + updates the release notes with 3.9.0/3.9.1 sections + black applied to setup.py
- Loading branch information
1 parent
9b50ea9
commit ed66bc4
Showing
4 changed files
with
56 additions
and
40 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
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 |
---|---|---|
|
@@ -18,63 +18,71 @@ | |
from setuptools import setup, find_packages | ||
import re | ||
|
||
DISTNAME = 'pymc3' | ||
DISTNAME = "pymc3" | ||
DESCRIPTION = "Probabilistic Programming in Python: Bayesian Modeling and Probabilistic Machine Learning with Theano" | ||
AUTHOR = 'PyMC Developers' | ||
AUTHOR_EMAIL = '[email protected]' | ||
AUTHOR = "PyMC Developers" | ||
AUTHOR_EMAIL = "[email protected]" | ||
URL = "http://github.com/pymc-devs/pymc3" | ||
LICENSE = "Apache License, Version 2.0" | ||
|
||
classifiers = ['Development Status :: 5 - Production/Stable', | ||
'Programming Language :: Python', | ||
'Programming Language :: Python :: 3', | ||
'Programming Language :: Python :: 3.6', | ||
'Programming Language :: Python :: 3.7', | ||
'Programming Language :: Python :: 3.8', | ||
'License :: OSI Approved :: Apache Software License', | ||
'Intended Audience :: Science/Research', | ||
'Topic :: Scientific/Engineering', | ||
'Topic :: Scientific/Engineering :: Mathematics', | ||
'Operating System :: OS Independent'] | ||
classifiers = [ | ||
"Development Status :: 5 - Production/Stable", | ||
"Programming Language :: Python", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.6", | ||
"Programming Language :: Python :: 3.7", | ||
"Programming Language :: Python :: 3.8", | ||
"License :: OSI Approved :: Apache Software License", | ||
"Intended Audience :: Science/Research", | ||
"Topic :: Scientific/Engineering", | ||
"Topic :: Scientific/Engineering :: Mathematics", | ||
"Operating System :: OS Independent", | ||
] | ||
|
||
PROJECT_ROOT = dirname(realpath(__file__)) | ||
|
||
# Get the long description from the README file | ||
with open(join(PROJECT_ROOT, 'README.rst'), encoding='utf-8') as buff: | ||
with open(join(PROJECT_ROOT, "README.rst"), encoding="utf-8") as buff: | ||
LONG_DESCRIPTION = buff.read() | ||
|
||
REQUIREMENTS_FILE = join(PROJECT_ROOT, 'requirements.txt') | ||
REQUIREMENTS_FILE = join(PROJECT_ROOT, "requirements.txt") | ||
|
||
with open(REQUIREMENTS_FILE) as f: | ||
install_reqs = f.read().splitlines() | ||
|
||
test_reqs = ['pytest', 'pytest-cov'] | ||
test_reqs = ["pytest", "pytest-cov"] | ||
|
||
|
||
def get_version(): | ||
VERSIONFILE = join('pymc3', '__init__.py') | ||
lines = open(VERSIONFILE, 'rt').readlines() | ||
VERSIONFILE = join("pymc3", "__init__.py") | ||
lines = open(VERSIONFILE, "rt").readlines() | ||
version_regex = r"^__version__ = ['\"]([^'\"]*)['\"]" | ||
for line in lines: | ||
mo = re.search(version_regex, line, re.M) | ||
if mo: | ||
return mo.group(1) | ||
raise RuntimeError('Unable to find version in %s.' % (VERSIONFILE,)) | ||
raise RuntimeError("Unable to find version in %s." % (VERSIONFILE,)) | ||
|
||
|
||
if __name__ == "__main__": | ||
setup(name=DISTNAME, | ||
version=get_version(), | ||
maintainer=AUTHOR, | ||
maintainer_email=AUTHOR_EMAIL, | ||
description=DESCRIPTION, | ||
license=LICENSE, | ||
url=URL, | ||
long_description=LONG_DESCRIPTION, | ||
long_description_content_type='text/x-rst', | ||
packages=find_packages(), | ||
package_data={'docs': ['*']}, | ||
include_package_data=True, | ||
classifiers=classifiers, | ||
python_requires=">=3.6", | ||
install_requires=install_reqs, | ||
tests_require=test_reqs, | ||
test_suite='nose.collector') | ||
setup( | ||
name=DISTNAME, | ||
version=get_version(), | ||
maintainer=AUTHOR, | ||
maintainer_email=AUTHOR_EMAIL, | ||
description=DESCRIPTION, | ||
license=LICENSE, | ||
url=URL, | ||
long_description=LONG_DESCRIPTION, | ||
long_description_content_type="text/x-rst", | ||
packages=find_packages(), | ||
# because of an upload-size limit by PyPI, we're temporarily removing docs from the tarball. | ||
# Also see MANIFEST.in | ||
# package_data={'docs': ['*']}, | ||
include_package_data=True, | ||
classifiers=classifiers, | ||
python_requires=">=3.6", | ||
install_requires=install_reqs, | ||
tests_require=test_reqs, | ||
test_suite="nose.collector", | ||
) |