forked from MarketSquare/DbBot
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathsetup.py
37 lines (34 loc) · 1.36 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-sqlalchemy'
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, 'dbbot', '__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, Pawel Bylicki',
author_email = '[email protected]',
url = 'https://github.com/pbylicki/DbBot-SQLAlchemy',
download_url = 'https://pypi.python.org/pypi/dbbot-sqlalchemy',
license = 'Apache License 2.0',
description = 'A tool for inserting Robot Framework test run '
'results into SQL database using SQLAlchemy.',
long_description = README,
keywords = 'robotframework testing testautomation atdd',
platforms = 'any',
classifiers = CLASSIFIERS,
packages = ['dbbot', 'dbbot.reader'],
install_requires = ['robotframework', 'sqlalchemy']
)