-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathsetup.py
More file actions
49 lines (45 loc) · 1.52 KB
/
Copy pathsetup.py
File metadata and controls
49 lines (45 loc) · 1.52 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#!/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.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Programming Language :: Python :: 3.13
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="6.0.0",
description=short_description,
author="Robot Framework Community, Ed Manlove",
author_email="emanlove@verizon.net",
url="https://github.com/marketsquare/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",
)