-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathsetup.py
41 lines (38 loc) · 1.27 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
#!/usr/bin/env python
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
with open('README.rst', 'r') as f:
readme = f.read()
setup(
name='eve-auth-jwt',
version='1.0.5',
description='Eve JWT authentication',
long_description=readme,
author='Olivier Poitrey',
author_email='[email protected]',
url='https://github.com/rs/eve-auth-jwt',
keywords=['eve', 'api', 'rest', 'oauth', 'auth', 'jwt'],
packages=['eve_auth_jwt'],
package_dir={'eve_auth_jwt': 'eve_auth_jwt'},
install_requires=['eve>=0.7.5', 'pyjwt==1.7.1'],
test_suite='test',
tests_require=['flake8'],
license='MIT',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Environment :: No Input/Output (Daemon)',
'Intended Audience :: Developers',
'Intended Audience :: Telecommunications Industry',
'License :: OSI Approved :: MIT License',
'Operating System :: Unix',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: HTTP Servers',
'Topic :: Security',
]
)