forked from nolar/kopf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
86 lines (79 loc) · 2.78 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
import os.path
from setuptools import find_packages, setup
with open(os.path.join(os.path.dirname(__file__), 'README.md')) as f:
LONG_DESCRIPTION = f.read()
DESCRIPTION = LONG_DESCRIPTION.splitlines()[0].lstrip('#').strip()
PROJECT_URLS = {
'Documentation': 'https://kopf.readthedocs.io',
'Bug Tracker': 'https://github.com/nolar/kopf/issues',
'Source Code': 'https://github.com/nolar/kopf',
}
setup(
name='kopf',
use_scm_version=True,
url=PROJECT_URLS['Source Code'],
project_urls=PROJECT_URLS,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
long_description_content_type='text/markdown',
author='Sergey Vasilyev',
author_email='[email protected]',
maintainer='Sergey Vasilyev',
maintainer_email='[email protected]',
keywords=['kubernetes', 'operator', 'framework', 'python', 'k8s'],
license='MIT',
classifiers = [
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Software Development :: Libraries',
],
zip_safe=True,
packages=find_packages(),
include_package_data=True,
entry_points={
'console_scripts': [
'kopf = kopf.cli:main',
],
},
python_requires='>=3.8',
setup_requires=[
'setuptools_scm',
],
install_requires=[
'typing_extensions', # 0.20 MB
'python-json-logger', # 0.05 MB
'iso8601', # 0.07 MB
'click', # 0.60 MB
'aiohttp', # 7.80 MB
'aiohttp>=3.9.0; python_version>="3.12"',
'pyyaml', # 0.90 MB
],
extras_require={
'full-auth': [
'pykube-ng', # 4.90 MB
'kubernetes', # 40.0 MB (!)
],
'uvloop': [
'uvloop', # 9.00 MB
'uvloop>=0.18.0; python_version>="3.12"',
],
'dev': [
'pyngrok', # 1.00 MB + downloaded binary
'oscrypto', # 2.80 MB (smaller than cryptography: 8.7 MB)
'certbuilder', # +0.1 MB (2.90 MB if alone)
'certvalidator', # +0.1 MB (2.90 MB if alone)
],
},
package_data={"kopf": ["py.typed"]},
)