-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathsetup.py
executable file
·38 lines (37 loc) · 1.3 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
#!/usr/bin/env python
from setuptools import setup
setup(
name="k5test",
version="0.10.4",
author="The Python GSSAPI Team",
author_email="[email protected]",
packages=["k5test"],
description="A library for testing Python applications in "
"self-contained Kerberos 5 environments",
long_description=open("README.md").read(),
license_files=[
"LICENSE.txt",
"K5TEST-LICENSE.txt",
],
url="https://github.com/pythongssapi/k5test",
python_requires=">=3.6",
classifiers=[
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Intended Audience :: Developers",
"License :: OSI Approved :: ISC License (ISCL)",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Security",
],
keywords=["gssapi", "security"],
install_requires=[],
extras_require={"extension_test": ["gssapi"]},
)