-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (28 loc) · 849 Bytes
/
setup.py
File metadata and controls
33 lines (28 loc) · 849 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
from setuptools import setup, find_packages
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'DESCRIPTION.rst'), encoding='utf-8') as f:
long_description = f.read()
setup(
name = 'testlinkconsole',
version = '0.3',
author = "Christophe Brun",
author_email = "christophe.brun.cl194@gadz.org",
description = ("Testlink Console "),
license = "BSD",
keywords = "console testlink",
url = "https://github.com/chbrun/testlinkconsole",
packages=find_packages(),
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Utilities",
"License :: OSI Approved :: BSD License",
],
install_requires=[
"termcolor",
"progressbar2",
"yapsy",
"cmd2",
],
)