-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (34 loc) · 892 Bytes
/
setup.py
File metadata and controls
38 lines (34 loc) · 892 Bytes
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
from setuptools import setup, find_packages
# Used for installing test dependencies directly
tests_require = [
'flake8',
'mock',
'nose',
'nose-timer',
'coverage<4.1',
]
setup(
name='cert-manager-bridge',
version='1.0.0',
description="Bridge API for cert-manager",
author="Jacob Alheid",
author_email="shakefu@gmail.com",
packages=find_packages(exclude=['test', 'test_*', 'fixtures']),
install_requires=[
'configargparse>=0.14.1',
'flask',
'pytool',
'pyyaml',
'requests',
'waitress',
],
test_suite='nose.collector',
tests_require=tests_require,
# For installing test dependencies directly
extras_require={'test': tests_require},
url="https://github.com/solidsystems/cert-manager-bridge/",
entry_points={
'console_scripts': [
],
},
)