-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
42 lines (36 loc) · 1.26 KB
/
Copy pathsetup.py
File metadata and controls
42 lines (36 loc) · 1.26 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
41
42
from setuptools import find_packages
from setuptools import setup
with open('README.md', 'r') as readme:
long_description = readme.read()
setup(
name='easyjwt',
version='0.2.1',
packages=find_packages(exclude=['docs', 'tests*']),
python_requires='>=3.6',
install_requires=[
'bidict==0.21.*',
'PyJWT==2.0.*',
],
author='Bastian Meyer',
author_email='bastian@bastianmeyer.eu',
url='https://github.com/BMeu/EasyJWT',
project_urls={
'Documentation': 'https://easyjwt.readthedocs.io/en/latest/?badge=latest',
'Source': 'https://github.com/BMeu/EasyJWT',
'Tracker': 'https://github.com/BMeu/EasyJWT/issues',
},
description='Super simple JSON Web Tokens with Python',
long_description=long_description,
long_description_content_type='text/markdown',
keywords='jwt token tokens JSON',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
)