-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (21 loc) · 736 Bytes
/
setup.py
File metadata and controls
23 lines (21 loc) · 736 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/usr/bin/env python
from distutils.core import setup
setup(name='reauth',
version='0.1',
description='Library for ReAuth authentication',
keywords='reauth authentication',
author='Remod Oy',
author_email='reauth@remod.fi',
url='https://github.com/remodoy/reauth-python',
packages=['reauth'],
license="MIT",
package_dir={'reauth': 'reauth'},
requires=["python_jwt (>=2.0.0)", "PyCrypto"],
classifiers=[
'Development Status :: 3 - Alpha',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
)