forked from MarketSquare/robotframework-tidy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
50 lines (47 loc) · 1.53 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
from robotidy.version import __version__
HERE = pathlib.Path(__file__).parent
README = (HERE / "README.rst").read_text()
CLASSIFIERS = """
Development Status :: 1 - Planning
License :: OSI Approved :: Apache Software License
Operating System :: OS Independent
Programming Language :: Python
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()
setup(
name='robotframework-tidy',
version=__version__,
description='Code autoformatter for Robot Framework',
long_description=README,
long_description_content_type="text/x-rst",
url="https://github.com/MarketSquare/robotframework-tidy",
author="MarketSquare - Robot Framework community",
author_email="bartek.hirsz@gmail.com",
license="Apache License 2.0",
platforms="any",
classifiers=CLASSIFIERS,
keywords='robotframework',
packages=['robotidy'],
include_package_data=True,
python_requires=">=3.7",
install_requires=[
'robotframework>=4.0',
'Click>=7.0',
'toml>=0.10.2'
],
extras_requires={
'dev': ['pytest', 'pylama', 'pylama_pylint', 'coverage'],
'doc': ['sphinx', 'sphinx_rtd_theme']
},
entry_points={'console_scripts': ['robotidy=robotidy.cli:cli']},
)