-
Notifications
You must be signed in to change notification settings - Fork 15
/
setup.py
40 lines (39 loc) · 1.29 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
from setuptools import setup
from pathlib import Path
setup(
name='lightkube',
version="0.16.0",
description='Lightweight kubernetes client library',
long_description=Path("README.md").read_text(),
long_description_content_type="text/markdown",
author='Giuseppe Tribulato',
author_email='[email protected]',
license='MIT',
url='https://github.com/gtsystem/lightkube',
packages=['lightkube', 'lightkube.config', 'lightkube.core', 'lightkube.utils'],
package_data={'lightkube': ['py.typed']},
install_requires=[
'lightkube-models >= 1.15.12.0',
'httpx >= 0.24.0, < 0.28.0, < 1.0.0',
'PyYAML'
],
extras_require={
"dev": [
"pytest",
"pytest-asyncio<0.17.0",
"respx"
]
},
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT License',
'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.13'
]
)