-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (26 loc) · 1.04 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
from distutils.core import setup
setup (
name = "pi",
version = "0.2.7",
description = "Cog commands for privacyidea",
author = "Diogenes Santos de Jesus",
author_email = "[email protected]",
url = "https://github.com/pan-net-security/pi-bundle",
packages = ["pi", "pi.commands", "pi.commands.token"],
# can't refer to git addresses here so commenting
# until pycog3 0.1.28 is available
# install_requires=['requests==2.18.4',
# 'certifi==2017.7.27.1',
# 'chardet==3.0.4',
# 'idna==2.6',
# 'requests==2.18.4',
# 'urllib3==1.22'],
keywords = ["cog", "privayidea", "otp", "bot", "devops", "chatops", "automation"],
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: MIT License"
]
)