-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
30 lines (26 loc) · 847 Bytes
/
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
import os
import imp
from setuptools import setup, find_packages
version = imp.load_source(
"krb5ticket.version", os.path.join("krb5ticket", "version.py")).version
setup(
name="python-krb5ticket",
version=version,
packages=find_packages(exclude=["tests", "tests.*"]),
install_requires=[
"gssapi",
"pandas==1.1.3"
],
author="Deric Degagne",
author_email="[email protected]",
description="Simple Python wrapper to create Kerberos ticket-granting tickets (TGT)",
url="https://github.com/degagne/python-krb5ticket",
license="MIT",
classifiers=[
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Programming Language :: Python :: 3.6",
"License :: OSI Approved :: MIT License"
],
python_requires=">=3.6",
)