-
Notifications
You must be signed in to change notification settings - Fork 24
/
setup.py
47 lines (42 loc) · 1.53 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
#!/usr/bin/env python
# coding: utf-8
from os import chdir
from os.path import abspath, dirname
from setuptools import find_packages, setup
chdir(dirname(abspath(__file__)))
with open('README.rst') as f:
readme = f.read()
with open('requirements.txt') as f:
requirements = f.read().splitlines()
setup(
author='Brandon Davidson',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Win32 (MS Windows)',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python',
],
description='This package allows for Single-Sign On HTTP Negotiate authentication using the requests library on Windows.',
extras_require={
'dev': [
'setuptools-version-command'
]
},
include_package_data=True,
install_requires=requirements,
long_description=readme,
name='requests-negotiate-sspi',
packages=find_packages(exclude=('docs')),
provides=['requests_negotiate_sspi'],
url='https://github.com/brandond/requests-negotiate-sspi',
version_command=('git describe --tags --dirty', 'pep440-git-full'),
)