-
Notifications
You must be signed in to change notification settings - Fork 66
/
setup.py
37 lines (34 loc) · 1.29 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
#!/usr/bin/env python
from distutils.core import setup
from os.path import abspath, dirname, join
import re
NAME = 'dbbot'
CLASSIFIERS = """
Development Status :: 4 - Beta
License :: OSI Approved :: Apache Software License
Operating System :: OS Independent
Programming Language :: Python
Topic :: Software Development :: Testing
""".strip().splitlines()
CURDIR = dirname(abspath(__file__))
with open(join(CURDIR, NAME, '__init__.py')) as f:
VERSION = re.search("\n__version__ = '(.*)'\n", f.read()).group(1)
with open(join(CURDIR, 'README.rst')) as f:
README = f.read()
setup(
name = NAME,
version = VERSION,
author = 'Robot Framework Developers',
author_email = '[email protected]',
url = 'https://github.com/robotframework/DbBot',
download_url = 'https://pypi.python.org/pypi/dbbot',
license = 'Apache License 2.0',
description = 'A tool for serializing Robot Framework test run '
'results into an sqlite3 database.',
long_description = README,
keywords = 'robotframework testing testautomation atdd',
platforms = 'any',
classifiers = CLASSIFIERS,
packages = ['dbbot', 'dbbot.reader'],
install_requires = ['robotframework']
)