-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
52 lines (46 loc) · 1.21 KB
/
setup.py
File metadata and controls
52 lines (46 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
48
49
50
51
52
import glob
import os
from setuptools import setup
VERSION = "0.1.0"
def read(fname):
return open(fname).read()
requirements = """\
annotated-types==0.7.0
asn1crypto==1.5.1
bitarray==2.9.2
pycryptodomex==3.20.0
setuptools==72.2.0
typing_extensions==4.12.2
pyparsing==3.1.2
"""
setup(
name="ipapocket",
version=VERSION,
description="Toolset for interaction with FreeIPA",
long_description=read("README.md"),
long_description_content_type="text/markdown",
url="https://github.com/nu11zy/ipapocket",
author="nu11zy",
maintainer="nu11zy",
platforms=["Unix"],
packages=[
"ipapocket",
"ipapocket.exceptions",
"ipapocket.krb5",
"ipapocket.krb5.constants",
"ipapocket.krb5.credentials",
"ipapocket.krb5.asn1",
"ipapocket.krb5.types",
"ipapocket.krb5.crypto",
"ipapocket.krb5.crypto.ed25519",
"ipapocket.network",
"ipapocket.utils",
],
scripts=glob.glob(os.path.join("examples", "*.py")),
install_requires=requirements,
classifiers=[
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.10",
],
)