forked from dependabot/demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
50 lines (47 loc) · 1.81 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
49
50
import pathlib
from setuptools import setup
HERE = pathlib.Path(__file__).parent
README = (HERE / "README.md").read_text()
with open(HERE / "robocop" / "version.py") as f:
__version__ = f.read().split("=")[1].strip().strip('"')
CLASSIFIERS = """
Development Status :: 5 - Production/Stable
License :: OSI Approved :: Apache Software License
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Framework :: Robot Framework
Framework :: Robot Framework :: Tool
Topic :: Software Development :: Testing
Topic :: Software Development :: Quality Assurance
Topic :: Utilities
Intended Audience :: Developers
""".strip().splitlines()
KEYWORDS = "robotframework automation testautomation testing linter qa"
DESCRIPTION = "Static code analysis tool (linter) for Robot Framework"
setup(
name="robotframework-robocop",
version=__version__,
description=DESCRIPTION,
long_description=README,
long_description_content_type="text/markdown",
url="https://github.com/MarketSquare/robotframework-robocop",
download_url="https://pypi.org/project/robotframework-robocop",
author="Bartlomiej Hirsz, Mateusz Nojek",
author_email="[email protected], [email protected]",
license="Apache License 2.0",
platforms="any",
classifiers=CLASSIFIERS,
keywords=KEYWORDS,
packages=["robocop"],
include_package_data=True,
install_requires=["robotframework>=3.2.2", "toml>=0.10.2", "packaging==21.*", "pathspec==0.9.*"],
extras_requires={
"dev": ["pytest", "pytest-benchmark", "pyyaml", "tox", "black"],
"doc": ["sphinx", "sphinx_rtd_theme"],
},
entry_points={"console_scripts": ["robocop=robocop:run_robocop"]},
)