-
-
Notifications
You must be signed in to change notification settings - Fork 52
/
setup.py
89 lines (85 loc) · 2.85 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
import os
from setuptools import setup
here = os.path.abspath(os.path.dirname(__file__))
meta = {}
with open(os.path.join(here, 'masonite', '__version__.py'), 'r') as f:
exec(f.read(), meta)
with open('README.md', 'r') as f:
readme = f.read()
setup(
name=meta['__title__'],
packages=[
'masonite',
'masonite.auth',
'masonite.providers',
'masonite.listeners',
'masonite.commands',
'masonite.controllers',
'masonite.drivers',
'masonite.drivers.authentication',
'masonite.drivers.mail',
'masonite.drivers.broadcast',
'masonite.drivers.cache',
'masonite.drivers.queue',
'masonite.drivers.session',
'masonite.drivers.storage',
'masonite.drivers.upload',
'masonite.managers',
'masonite.testsuite',
'masonite.queues',
'masonite.contracts',
'masonite.contracts.managers',
'masonite.helpers',
'masonite.middleware',
'masonite.testing',
],
version=meta['__version__'],
install_requires=[
'bcrypt>=3.1,<3.2',
'cleo>=0.6,<0.7',
'cryptography>=2.3,<2.8',
'hupper>=1.0,<2.0',
'Jinja2>=2,<3',
'masonite-events>=1.0,<2',
'masonite-scheduler>=1.0.0,<=1.0.99',
'masonite-validation>=2.2.0,<=2.2.99',
'orator>=0.9,<1',
'passlib>=1.7,<1.8',
'pendulum>=1.5,<1.6',
'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',
],
description=meta['__description__'],
long_description=readme,
long_description_content_type='text/markdown',
author=meta['__author__'],
author_email=meta['__author_email__'],
url=meta['__url__'],
keywords=['masonite', 'python web framework', 'python3'],
licence=meta['__licence__'],
python_requires=">=3.4",
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.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'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,
)