forked from davedoesdev/python-jwt
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (26 loc) · 920 Bytes
/
Copy pathsetup.py
File metadata and controls
28 lines (26 loc) · 920 Bytes
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
import os
from setuptools import setup
def read(name):
return open(os.path.join(os.path.dirname(__file__), name)).read()
setup(
name='python_jwt',
version='3.3.0',
description="Module for generating and verifying JSON Web Tokens",
long_description=read('README.md'),
long_description_content_type='text/markdown',
keywords='',
author='David Halls',
author_email='dave@davedoesdev.com',
url='https://github.com/davedoesdev/python-jwt',
license='MIT',
packages=['python_jwt'],
install_requires=['jwcrypto>=0.8'],
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*',
classifiers=[
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: Implementation :: CPython',
],
)