-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.py
32 lines (29 loc) · 995 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
#!/usr/bin/python
from setuptools import setup, find_packages
from ctf_cli import version
import codecs
requirements = []
try:
with open('requirements.txt') as f:
requirements = f.read().splitlines()
except:
pass
setup(
name = "ctf-cli",
version = version.version,
packages = find_packages(exclude=["test"]),
url = 'https://github.com/Containers-Testing-Framework/ctf-cli',
download_url = "https://github.com/Containers-Testing-Framework/ctf-cli/archive/%s.tar.gz" % version.version,
author = 'Vadim Rutkovsky',
author_email = '[email protected]',
description = 'Simple command line tool for executing Containers Testing Framework',
license='GPLv2',
keywords = 'docker behave',
long_description = codecs.open('README.rst', encoding="utf8").read(),
entry_points = {
'console_scripts': [
'ctf-cli=ctf_cli.cli_runner:run',
'ctf=ctf_cli.cli_runner:run'],
},
install_requires=requirements
)