-
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.
- Loading branch information
1 parent
cd007ec
commit 629943b
Showing
3 changed files
with
19 additions
and
63 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,3 +1,3 @@ | ||
{ | ||
"python.pythonPath": "/Users/SimonChapman/.pyenv/versions/gc-3.8/bin/python" | ||
"python.pythonPath": "/Users/SimonChapman/.pyenv/versions/rcpchgrowth-python/bin/python" | ||
} |
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,53 +1,5 @@ | ||
appdirs==1.4.3 | ||
astroid==2.4.0 | ||
attrs==20.2.0 | ||
autopep8==1.5.4 | ||
cachelib==0.1.1 | ||
certifi==2020.4.5.2 | ||
chardet==3.0.4 | ||
click==7.1.2 | ||
distlib==0.3.0 | ||
et-xmlfile==1.0.1 | ||
filelock==3.0.12 | ||
gunicorn==20.0.4 | ||
idna==2.9 | ||
importlib-metadata==1.6.0 | ||
iniconfig==1.1.1 | ||
isort==4.3.21 | ||
itsdangerous==1.1.0 | ||
jdcal==1.4.1 | ||
Jinja2==2.11.3 | ||
jsonschema==3.2.0 | ||
lazy-object-proxy==1.4.3 | ||
MarkupSafe==1.1.1 | ||
mccabe==0.6.1 | ||
openpyxl==3.0.4 | ||
packaging==20.4 | ||
pbr==5.4.5 | ||
pip-autoremove==0.9.1 | ||
pluggy==0.13.1 | ||
prance==0.19.0 | ||
py==1.9.0 | ||
pycodestyle==2.6.0 | ||
pylint==2.5.0 | ||
pyparsing==2.4.7 | ||
pyrsistent==0.17.3 | ||
pytest==6.1.1 | ||
marshmallow==3.11.1 | ||
numpy==1.20.2 | ||
python-dateutil==2.8.1 | ||
python-dotenv==0.14.0 | ||
pytz==2020.1 | ||
PyYAML==5.3.1 | ||
requests==2.23.0 | ||
scipy==1.4.1 | ||
semver==2.10.2 | ||
six==1.14.0 | ||
stevedore==1.32.0 | ||
toml==0.10.0 | ||
typed-ast==1.4.1 | ||
urllib3==1.25.9 | ||
virtualenv==20.0.18 | ||
virtualenv-clone==0.5.4 | ||
virtualenvwrapper==4.8.4 | ||
Werkzeug==1.0.1 | ||
wrapt==1.12.1 | ||
zipp==3.1.0 | ||
scipy==1.6.2 | ||
six==1.15.0 |
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,4 +1,4 @@ | ||
from setuptools import setup, find_packages | ||
from setuptools import _install_setup_requires, setup, find_packages | ||
from os import path | ||
|
||
here = path.abspath(path.dirname(__file__)) | ||
|
@@ -8,33 +8,37 @@ | |
|
||
setup( | ||
name='rcpchgrowth', | ||
version='2.1.5', # Required | ||
version='2.1.6', | ||
description='SDS and Centile calculations for UK Growth Data', | ||
long_description="https://github.com/rcpch/digital-growth-charts/blob/master/README.md", | ||
# long_description_content_type='text/markdown', | ||
url='https://github.com/rcpch/digital-growth-charts/blob/master/README.md', | ||
author='@eatyourpeas, @marcusbaw @statist7 RCPCH', | ||
|
||
author_email='[email protected]', | ||
classifiers=[ | ||
'Development Status :: 3 - Alpha', | ||
# Pick your license as you wish | ||
'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.' | ||
], | ||
keywords='growth charts anthropometry SDS Centile', # Optional | ||
|
||
packages=find_packages(), # Required | ||
keywords='growth charts anthropometry SDS Centile', | ||
packages=find_packages(), | ||
python_requires='>=3.5, <4', | ||
install_requires=[], # Optional | ||
extras_require={ # Optional | ||
install_requires=[ | ||
'marshmallow' | ||
'numpy' | ||
'python-dateutil' | ||
"scipy" | ||
'six' | ||
], | ||
extras_require={ | ||
'dev': ['check-manifest'], | ||
'test': ['coverage'], | ||
}, | ||
include_package_data=True, | ||
project_urls={ # Optional | ||
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', | ||
|