-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
47 lines (36 loc) · 1.21 KB
/
setup.py
File metadata and controls
47 lines (36 loc) · 1.21 KB
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
44
45
46
47
# -*- coding: utf-8 -*-
"""setup.py: setuptools control."""
import re
from setuptools import setup
version = re.search(
'^__version__\s*=\s*\'(.*)\'',
open('check_ezproxy/check_ezproxy.py').read(),
re.M
).group(1)
with open("README.md", "rb") as f:
long_descr = f.read().decode("utf-8")
setup(
name="check_ezproxy",
packages=["check_ezproxy"],
entry_points={
"console_scripts": ['check_ezproxy = check_ezproxy.check_ezproxy:main']
},
version=version,
description="Command line tool to test EZProxy stanza configurations and link health.",
long_description=long_descr,
license='MIT',
author="Ed Hill",
author_email="hill.charles2@gmail.com",
url="https://github.com/chill17/check_ezproxy/",
install_requires=['requests', 'pykbart', 'gevent'],
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
],
)