This repository was archived by the owner on Jun 24, 2025. It is now read-only.
forked from Alesh/jwt4auth
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
40 lines (35 loc) · 1.24 KB
/
setup.py
File metadata and controls
40 lines (35 loc) · 1.24 KB
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
from setuptools import setup, find_namespace_packages
def long_description():
with open('README.md') as README_file:
return README_file.read()
settings = {
'name': 'jwt4auth',
'author': 'Alexey Poryadin',
'author_email': 'alexey.poryadin@gmail.com',
'url': 'https://github.com/alesh/jwt4auth',
'long_description': long_description(),
'long_description_content_type': 'text/markdown',
'keywords': 'jwt access refresh token auth authentication authorization aiohttp react typescript javascript',
'license': 'http://opensource.org/licenses/LGPL-3.0',
'classifiers': [
'Framework :: AsyncIO',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Programming Language :: Python :: 3',
],
'setup_requires': ['setuptools-vcs-version'],
'version_config': {
'version_style': {
'metadata': False,
'dirty': True,
}
},
'zip_safe': False,
'include_package_data': True,
'packages': find_namespace_packages(exclude=['sample', 'sample.*', 'node_modules.*', 'packages.*']),
'install_requires': [
'aiohttp==3.7.2',
'PyJWT==1.7.1'
]
}
setup(**settings)