-
Notifications
You must be signed in to change notification settings - Fork 22
/
setup.py
48 lines (44 loc) · 1.45 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
38
39
40
41
42
43
44
45
46
47
48
#!/usr/bin/env python
from setuptools import setup
short_description = (
"Robot Framework wrapper for faker, a fake test data generator"
)
try:
description = open("README.rst").read()
except IOError:
description = short_description
classifiers = """
Development Status :: 5 - Production/Stable
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Topic :: Software Development :: Testing
Topic :: Software Development :: Quality Assurance
""".strip().splitlines()
setup(
name="robotframework-faker",
package_dir={"": "robotframework-faker"},
packages=["FakerLibrary"], # this must be the same as the name above
version="5.0.0",
description=short_description,
author="Guy Kisel",
author_email="[email protected]",
url="https://github.com/guykisel/robotframework-faker",
download_url="https://pypi.python.org/pypi/robotframework-faker",
keywords=(
"robotframework testing "
"test automation testautomation "
"atdd bdd faker"
), # arbitrary keywords
install_requires=["faker", "robotframework", "wrapt"],
long_description=description,
license="MIT",
classifiers=classifiers,
platforms="any",
)