forked from ajkavanagh/pyramid_jwtauth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
43 lines (37 loc) · 1.42 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
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'README.rst')) as f:
README = f.read()
with open(os.path.join(here, 'CHANGES.txt')) as f:
CHANGES = f.read()
# TODO: fix the imports.
requires = ['pyramid >= 1.3', 'webtest', 'cryptography', 'PyJWT == 0.4.0']
setup(name='pyramid_jwtauth',
version='0.1.0',
description='pyramid_jwtauth',
long_description=README + '\n\n' + CHANGES,
license='MPLv2.0',
classifiers=[
"Development Status :: 4 - Beta",
"Framework :: Pyramid",
"Intended Audience :: Developers",
"Topic :: Internet :: WWW/HTTP",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
],
author='Alex Kavanagh (Websand)',
author_email='[email protected]',
url='https://github.com/ajkavanagh/pyramid_jwtauth',
keywords='authentication token JWT JSON',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=requires,
tests_require=requires,
test_suite="pyramid_jwtauth")