-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
48 lines (42 loc) · 1.19 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
import os
from setuptools import find_packages, setup # type: ignore
HERE = os.path.abspath(os.path.dirname(__file__))
def read(*parts):
with open(os.path.join(HERE, *parts)) as f:
return f.read()
setup(
name="secret-sync-controller",
# NOTE: When updating the version for release, don't forget to update the
# deploy YAML as well.
version="0.0.4.dev0",
license="MIT",
description="Secret Sync Controller",
author="Praekelt.org SRE team",
author_email="sre@praekelt.org",
long_description=read("README.md"),
long_description_content_type="text/markdown",
packages=find_packages("src"),
package_data={"": ["py.typed"]},
package_dir={"": "src"},
python_requires=">=3.7",
install_requires=[
"attrs",
# Pin kopf because it is (somewhat) rapidly evolving.
"kopf==1.35.3",
"pykube-ng>=19.10.0",
],
extras_require={
"dev": [
"black",
"flake8",
"isort",
"mypy>=0.800",
"pytest>=4.0.0",
"pytest-cov",
"pytest-responses",
"pyyaml",
"responses",
"types-pyyaml",
],
},
)