-
-
Notifications
You must be signed in to change notification settings - Fork 268
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* chore: fix dependencies. * chore: update dependencies. * chore: remove PyGobject * chore: fix dependencies. * chore: pin werkzeug version. * chore: pin wtforms version. * chore: pin versions. * chore: remove CSRF check. * chore: fix dependencies
- Loading branch information
Showing
4 changed files
with
149 additions
and
149 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
from setuptools import setup, find_packages | ||
|
||
with open('pybossa/version.txt') as f: | ||
with open("pybossa/version.txt") as f: | ||
version = f.readline() | ||
__version__ = version.rstrip() | ||
|
||
|
@@ -14,7 +14,7 @@ | |
"certifi==2018.11.29", | ||
"cffi>=1.11.5", | ||
"chardet==3.0.4", | ||
"Click==7.0", | ||
"Click==8.0.3", | ||
"colorama==0.4.1", | ||
"cov-core==1.15.0", | ||
"coverage==4.5.2", | ||
|
@@ -27,7 +27,7 @@ | |
"factory-boy==2.4.1", | ||
"Faker==1.0.1", | ||
"feedparser==5.2.1", | ||
"Flask", | ||
"Flask==1.1.2", | ||
"Flask-Assets==0.12", | ||
"Flask-Babel>=0.9", | ||
"Flask-Cors>=3.0.2", | ||
|
@@ -40,8 +40,8 @@ | |
"Flask-Plugins>=1.6.1", | ||
"flask-profiler==1.6", | ||
"Flask-SimpleLDAP>=1.1.2", | ||
"Flask-SQLAlchemy>=2.3.2", | ||
"Flask-WTF>=0.9.5", | ||
"Flask-SQLAlchemy==2.4.4", | ||
"Flask-WTF==0.14.3", | ||
"flatten-json==0.1.6", | ||
"google-api-python-client==1.5.5", | ||
"html2text==2014.7.3", | ||
|
@@ -54,7 +54,7 @@ | |
"iso8601==0.1.12", | ||
"itsdangerous==1.1.0", | ||
"jeepney==0.4", | ||
"Jinja2>=2.10.1", | ||
"Jinja2==2.11.2", | ||
"jsmin==2.2.2", | ||
"keyring==17.1.1", | ||
"keystoneauth1==3.11.2", | ||
|
@@ -95,7 +95,7 @@ | |
"PyLD==1.0.4", | ||
"pyldap==3.0.0.post1", | ||
"pyOpenSSL==18.0.0", | ||
"pyparsing==2.3.0", | ||
"pyparsing==2.4.7", | ||
"python-dateutil==2.7.5", | ||
"python-editor==1.0.3", | ||
"python-keystoneclient==3.18.0", | ||
|
@@ -132,16 +132,16 @@ | |
"urllib3==1.24.2", | ||
"validators==0.12.6", | ||
"webassets==0.12.1", | ||
"Werkzeug", | ||
"Werkzeug==1.0.1", | ||
"wrapt==1.10.11", | ||
"WTForms>=1.0.5", | ||
"WTForms-Components>=0.10.3", | ||
"WTForms==2.3.3", | ||
"WTForms-Components==0.10.5", | ||
"yacryptopan==1.0.0", | ||
"email_validator==1.1.1" | ||
"email_validator==1.1.1", | ||
] | ||
|
||
setup( | ||
name='pybossa', | ||
name="pybossa", | ||
version=__version__, | ||
packages=find_packages(), | ||
install_requires=requirements, | ||
|
@@ -153,23 +153,23 @@ | |
# '[email protected]:Scifabric/pybossa.git@b8ab2ef199e82ca417d470bbed916c7b8dbda4d4#egg=pybossa' | ||
# ] | ||
# metadata for upload to PyPI | ||
author='Scifabric LTD', | ||
author_email='[email protected]', | ||
description='Open Source CrowdSourcing framework', | ||
long_description='''PYBOSSA is the ultimate crowdsourcing framework to analyze or enrich data that can't be processed by machines alone.''', | ||
license='AGPLv3', | ||
url='http://pybossa.com', | ||
download_url='https://github.com/Scifabric/pybossa', | ||
author="Scifabric LTD", | ||
author_email="[email protected]", | ||
description="Open Source CrowdSourcing framework", | ||
long_description="""PYBOSSA is the ultimate crowdsourcing framework to analyze or enrich data that can't be processed by machines alone.""", | ||
license="AGPLv3", | ||
url="http://pybossa.com", | ||
download_url="https://github.com/Scifabric/pybossa", | ||
include_package_data=True, | ||
classifiers=[ | ||
'Development Status :: 5 - Production/Stable', | ||
'Environment :: Console', | ||
'Intended Audience :: Developers', | ||
'License :: OSI Approved :: GNU Affero v3', | ||
'Operating System :: OS Independent', | ||
'Programming Language :: Python', | ||
'Topic :: Software Development :: Libraries :: Python Modules' | ||
"Development Status :: 5 - Production/Stable", | ||
"Environment :: Console", | ||
"Intended Audience :: Developers", | ||
"License :: OSI Approved :: GNU Affero v3", | ||
"Operating System :: OS Independent", | ||
"Programming Language :: Python", | ||
"Topic :: Software Development :: Libraries :: Python Modules", | ||
], | ||
entry_points=''' | ||
''' | ||
entry_points=""" | ||
""", | ||
) |
Oops, something went wrong.