Skip to content

Commit

Permalink
update cryptography package
Browse files Browse the repository at this point in the history
  • Loading branch information
girardinsamuel committed Feb 19, 2021
1 parent 4cc3453 commit 7e608ef
Show file tree
Hide file tree
Showing 2 changed files with 74 additions and 74 deletions.
2 changes: 1 addition & 1 deletion requirements.txt
Expand Up @@ -3,7 +3,7 @@ bcrypt>=3.1,<3.2
boto3==1.5.24
cleo>=0.8,<0.9
coveralls
cryptography>=2.3,<2.4
cryptography>=3.4<3.5
flake8
hupper>=1.0,<2.0
Jinja2>=2,<3
Expand Down
146 changes: 73 additions & 73 deletions setup.py
Expand Up @@ -4,96 +4,96 @@
here = os.path.abspath(os.path.dirname(__file__))

meta = {}
with open(os.path.join(here, 'src/masonite', '__version__.py'), 'r') as f:
with open(os.path.join(here, "src/masonite", "__version__.py"), "r") as f:
exec(f.read(), meta)

try:
with open('README.md', 'r', encoding='utf-8') as f:
with open("README.md", "r", encoding="utf-8") as f:
readme = f.read()
except FileNotFoundError:
readme = ""

setup(
name=meta['__title__'],
name=meta["__title__"],
packages=[
'masonite.auth.guards',
'masonite.auth',
'masonite.commands.presets',
'masonite.commands',
'masonite.contracts.managers',
'masonite.contracts',
'masonite.controllers',
'masonite.cookies',
'masonite.drivers.authentication',
'masonite.drivers.broadcast',
'masonite.drivers.cache',
'masonite.drivers.mail',
'masonite.drivers.queue',
'masonite.drivers.session',
'masonite.drivers.storage',
'masonite.drivers.upload',
'masonite.drivers',
'masonite.headers',
'masonite.helpers',
'masonite.listeners',
'masonite.managers',
'masonite.middleware',
'masonite.providers',
'masonite.queues',
'masonite.testing',
'masonite',
"masonite.auth.guards",
"masonite.auth",
"masonite.commands.presets",
"masonite.commands",
"masonite.contracts.managers",
"masonite.contracts",
"masonite.controllers",
"masonite.cookies",
"masonite.drivers.authentication",
"masonite.drivers.broadcast",
"masonite.drivers.cache",
"masonite.drivers.mail",
"masonite.drivers.queue",
"masonite.drivers.session",
"masonite.drivers.storage",
"masonite.drivers.upload",
"masonite.drivers",
"masonite.headers",
"masonite.helpers",
"masonite.listeners",
"masonite.managers",
"masonite.middleware",
"masonite.providers",
"masonite.queues",
"masonite.testing",
"masonite",
],
version=meta['__version__'],
version=meta["__version__"],
install_requires=[
'bcrypt>=3.1,<3.2',
'cleo>=0.8,<0.9',
'cryptography>=2.3,<=2.9',
'hupper<1.10',
'Jinja2>=2,<3',
'masonite-orm>=1.0,<1.1',
'passlib>=1.7,<1.8',
'pendulum>=2.1,<2.2',
'psutil>=5.4,<5.7',
'python-dotenv>=0.8,<0.11',
'requests>=2.0,<2.99',
'tabulate>=0.8,<0.9',
'tldextract>=2.2,<2.3',
'whitenoise>=3.3,<5',
'exceptionite>=1.0,<2',
"bcrypt>=3.1,<3.2",
"cleo>=0.8,<0.9",
"cryptography>=3.4<3.5",
"hupper<1.10",
"Jinja2>=2,<3",
"masonite-orm>=1.0,<1.1",
"passlib>=1.7,<1.8",
"pendulum>=2.1,<2.2",
"psutil>=5.4,<5.7",
"python-dotenv>=0.8,<0.11",
"requests>=2.0,<2.99",
"tabulate>=0.8,<0.9",
"tldextract>=2.2,<2.3",
"whitenoise>=3.3,<5",
"exceptionite>=1.0,<2",
],
description=meta['__description__'],
long_description_content_type='text/markdown',
description=meta["__description__"],
long_description_content_type="text/markdown",
long_description=readme,
author=meta['__author__'],
author_email=meta['__author_email__'],
package_dir={'': 'src'},
url=meta['__url__'],
keywords=['masonite', 'python web framework', 'python3'],
license=meta['__licence__'],
author=meta["__author__"],
author_email=meta["__author_email__"],
package_dir={"": "src"},
url=meta["__url__"],
keywords=["masonite", "python web framework", "python3"],
license=meta["__licence__"],
python_requires=">=3.5",
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Masonite',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'Operating System :: OS Independent',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Internet :: WWW/HTTP :: WSGI',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Topic :: Software Development :: Libraries :: Python Modules',
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Framework :: Masonite",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Internet :: WWW/HTTP :: WSGI",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Topic :: Software Development :: Libraries :: Python Modules",
],
include_package_data=True,
entry_points={
'console_scripts': [
'craft = masonite.cli:application.run',
"console_scripts": [
"craft = masonite.cli:application.run",
],
},
)

0 comments on commit 7e608ef

Please sign in to comment.