Skip to content

Commit

Permalink
Merge pull request #9 from giosg/fea_define_dependency_version_better
Browse files Browse the repository at this point in the history
Define versions so that they don't always conflict with client apps
  • Loading branch information
mentholi authored Nov 3, 2020
2 parents 2312301 + 0c7dbd7 commit 31faa55
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 11 deletions.
10 changes: 5 additions & 5 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
asn1crypto==0.24.0
certifi==2020.6.20
certifi>=2020.6.20
cffi==1.12.3
chardet==3.0.4
cryptography==2.7
cryptography>=2.7
Django==3.0.7
idna==2.8
pycparser==2.19
PyJWT==1.7.1
pytz==2019.1
requests==2.22.0
pytz>=2019.1
requests>=2.22.0
six==1.12.0
sqlparse==0.3.0
urllib3==1.25.10
urllib3>=1.25.10
11 changes: 5 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,23 +4,22 @@
setup(
name='giosgapps_bindings',
packages=setuptools.find_packages(),
version='0.0.22',
version='0.1.0',
license='MIT',
description='Module for Giosg Apps development',
author='Giosg',
author_email='[email protected]',
url='https://github.com/giosg/giosgapps_bindings',
download_url='https://github.com/giosg/giosgapps_bindings/archive/v0.0.22.tar.gz',
download_url='https://github.com/giosg/giosgapps_bindings/archive/v0.1.0.tar.gz',
keywords=['AUTH', 'GIOSG'],
install_requires=list(f.read().splitlines()),
classifiers=[
'Development Status :: 3 - Alpha', # "3 - Alpha" or "4 - Beta" or "5 - Production/Stable"
'Development Status :: 5 - Production/Stable', # "3 - Alpha" or "4 - Beta" or "5 - Production/Stable"
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
)

0 comments on commit 31faa55

Please sign in to comment.