forked from requests/requests-kerberos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
54 lines (43 loc) · 1.44 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
44
45
46
47
48
49
50
51
52
53
54
#!/usr/bin/env python
# coding: utf-8
import os
import re
from setuptools import setup
with open('requirements.txt') as requirements:
requires = [line.strip() for line in requirements if line.strip()]
path = os.path.dirname(__file__)
desc_fd = os.path.join(path, 'README.rst')
hist_fd = os.path.join(path, 'HISTORY.rst')
long_desc = ''
short_desc = 'A Kerberos authentication handler for python-requests'
if os.path.isfile(desc_fd):
with open(desc_fd) as fd:
long_desc = fd.read()
if os.path.isfile(hist_fd):
with open(hist_fd) as fd:
long_desc = '\n\n'.join([long_desc, fd.read()])
def get_version():
"""
Simple function to extract the current version using regular expressions.
"""
reg = re.compile(r'__version__ = [\'"]([^\'"]*)[\'"]')
with open('requests_kerberos/__init__.py') as fd:
matches = list(filter(lambda x: x, map(reg.match, fd)))
if not matches:
raise RuntimeError(
'Could not find the version information for requests_kerberos'
)
return matches[0].group(1)
setup(
name='requests-kerberos',
description=short_desc,
long_description=long_desc,
url='https://github.com/requests/requests-kerberos',
packages=['requests_kerberos'],
package_data={'': ['LICENSE', 'AUTHORS']},
include_package_data=True,
version=get_version(),
install_requires=requires,
test_suite='test_requests_kerberos',
tests_require=['mock'],
)