-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'live' into 18-python-version-upgrade-3.11
- Loading branch information
Showing
8 changed files
with
82 additions
and
87 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 |
---|---|---|
@@ -1,8 +1,8 @@ | ||
[bumpversion] | ||
current_version = 3.2.0 | ||
current_version = 4.0.0 | ||
tag = False | ||
commit = True | ||
|
||
[bumpversion:file:setup.py] | ||
search = version='{current_version}' | ||
replace = version='{new_version}' | ||
search = version="{current_version}" | ||
replace = version="{new_version}" |
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
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 |
---|---|---|
@@ -1,46 +1,34 @@ | ||
from setuptools import _install_setup_requires, setup, find_packages | ||
from setuptools import setup, find_packages | ||
from os import path | ||
|
||
here = path.abspath(path.dirname(__file__)) | ||
|
||
with open(path.join(here, 'README.md'), encoding='utf-8') as f: | ||
with open(path.join(here, "README.md"), encoding="utf-8") as f: | ||
long_description = f.read() | ||
|
||
setup( | ||
name='rcpchgrowth', | ||
version='3.2.0', | ||
description='SDS and Centile calculations for UK Growth Data', | ||
long_description="https://github.com/rcpch/digital-growth-charts/blob/master/README.md", | ||
url='https://github.com/rcpch/digital-growth-charts/blob/master/README.md', | ||
author='@eatyourpeas, @marcusbaw @statist7 RCPCH', | ||
|
||
author_email='[email protected]', | ||
name="rcpchgrowth", | ||
version="4.0.0", | ||
description="SDS and Centile calculations for UK Growth Data", | ||
long_description=long_description, | ||
url="https://github.com/rcpch/digital-growth-charts/blob/master/README.md", | ||
author="@eatyourpeas, @marcusbaw, @statist7, RCPCH Incubator", | ||
author_email="[email protected]", | ||
classifiers=[ | ||
'Development Status :: 3 - Alpha', | ||
'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)', | ||
'Programming Language :: Python :: 3.8', | ||
'Programming Language :: Python :: 3 :: Only', | ||
'Topic :: Scientific/Engineering :: Medical Science Apps.' | ||
"Development Status :: 5 - Production/Stable", | ||
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)", | ||
"Programming Language :: Python :: 3.12", | ||
"Programming Language :: Python :: 3 :: Only", | ||
"Topic :: Scientific/Engineering :: Medical Science Apps.", | ||
], | ||
keywords='growth charts anthropometry SDS Centile', | ||
|
||
packages=find_packages(), | ||
python_requires='>=3.5, <3.9', | ||
install_requires=[ | ||
'python-dateutil', | ||
"scipy", | ||
'six', | ||
'pytest', | ||
'click' | ||
], | ||
extras_require={ | ||
'dev': ['check-manifest'], | ||
'test': ['coverage'], | ||
}, | ||
keywords="growth charts, anthropometry, SDS, centile, UK-WHO, UK90, Trisomy 21, Turner", | ||
packages=find_packages(), | ||
python_requires=">3.8", | ||
install_requires=["python-dateutil", "scipy"], | ||
include_package_data=True, | ||
project_urls={ | ||
'Bug Reports': 'https://github.com/rcpch/digital-growth-charts/issues', | ||
'API management': 'https://dev.rcpch.ac.uk', | ||
'Source': 'https://github.com/rcpch/digital-growth-charts', | ||
project_urls={ | ||
"Bug Reports": "https://github.com/rcpch/rcpchgrowth-python/issues", | ||
"API management": "https://dev.rcpch.ac.uk", | ||
"Source": "https://github.com/rcpch/rcpchgrowth-python", | ||
}, | ||
) |