-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
43 lines (38 loc) · 914 Bytes
/
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
import sys
from setuptools import find_packages, setup
install_reqs = [
'click',
'docker',
'requests',
]
tests_require = [
'bandit',
'coverage',
'fixtures',
'flake8',
'ipython',
'testrepository',
'testtools',
]
target_dir = "lib/python{major}.{minor}/site-packages/pytwistcli".format(
major=sys.version_info[0], minor=sys.version_info[1]
)
setup(
name="pytwistcli",
version="0.0.0",
description="Python CLI/API client for Twistlock",
url="https://github.com/bigjools/pytwistcli",
author="Julian Edwards",
license="Apache",
packages=find_packages(exclude=['tests']),
install_requires=install_reqs,
include_package_data=True,
tests_require=tests_require,
extras_require={'test': tests_require},
zip_safe=False,
entry_points={
'console_scripts': [
'pytwistcli = pytwistcli.cli:main',
]
}
)