-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (27 loc) · 698 Bytes
/
setup.py
File metadata and controls
29 lines (27 loc) · 698 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
29
#!/usr/bin/env python
from setuptools import setup
setup(
name="adjure",
license="MIT",
description="Two-factor authentication microservice",
author="Ben Picolo",
author_email="be.picolo@gmail.com",
url="https://github.com/bpicolo/adjure",
packages=["adjure"],
classifiers=[
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.4",
],
install_requires=[
'cryptography',
'flask',
'jsonschema',
'logstash-formatter',
'pillow',
'qrcode',
'uwsgi',
'yaml',
],
)