-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (26 loc) · 1.05 KB
/
setup.py
File metadata and controls
32 lines (26 loc) · 1.05 KB
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/env python
from os.path import join, dirname
execfile(join(dirname(__file__), 'src', 'PdfLibrary', 'version.py'))
from distutils.core import setup
CLASSIFIERS = """
Programming Language :: Python
Topic :: Software Development :: Testing
"""[1:-1]
long_description=open(join(dirname(__file__), 'README.md',)).read()
setup(
name = 'robotframework-pdflibrary',
version = VERSION,
description = 'Robot Framework PDF Inspect Library',
long_description = long_description,
author = 'bloopark systems GmbH & Co. KG',
author_email = 'info@bloopark.com',
url = 'https://github.com/blooparksystems/robotframework-pdflibrary',
license = 'Apache License 2.0',
keywords = 'robotframework checking testautomation pdf reports',
platforms = 'any',
zip_safe = False,
classifiers = CLASSIFIERS.splitlines(),
package_dir = {'' : 'src'},
install_requires = ['robotframework', 'chardet', 'pdfminer', 'pylibdmtx', 'wand'],
packages = ['PdfLibrary'],
)