forked from zalando-incubator/kopf
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
52 lines (45 loc) · 1.41 KB
/
setup.py
File metadata and controls
52 lines (45 loc) · 1.41 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 os.path
from setuptools import setup, find_packages
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/zalando-incubator/kopf/issues',
'Source Code': 'https://github.com/zalando-incubator/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='sergey.vasilyev@zalando.de',
maintainer='Sergey Vasilyev, Chiara Mezzavilla',
maintainer_email='sergey.vasilyev@zalando.de, chiara.mezzavilla@zalando.de',
keywords=['kubernetes', 'operator', 'framework', 'python', 'k8s'],
license='MIT',
zip_safe=True,
packages=find_packages(),
include_package_data=True,
entry_points={
'console_scripts': [
'kopf = kopf.cli:main',
],
},
python_requires='>=3.7',
setup_requires=[
'setuptools_scm',
],
install_requires=[
'typing_extensions',
'click',
'iso8601',
'aiohttp<4.0.0',
'aiojobs',
'pykube-ng>=0.27', # used only for config parsing
],
)