forked from boakley/robotframework-lint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
44 lines (41 loc) · 1.49 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
# N.B. to push a new version to PyPi, update the version number
# in rflint/version.py and then run 'python setup.py sdist upload'
from setuptools import setup
filename = 'rflint/version.py'
exec(compile(open(filename, 'rb').read(), filename, 'exec'))
setup(
name = 'robotframework-lint',
version = __version__,
author = 'Bryan Oakley',
author_email = '[email protected]',
url = 'https://github.com/boakley/robotframework-lint/',
keywords = 'robotframework',
license = 'Apache License 2.0',
description = 'Static analysis tool for robotframework plain text files',
long_description = open('README.md').read(),
zip_safe = False,
include_package_data = True,
install_requires = ['robotframework'],
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Framework :: Robot Framework",
"Programming Language :: Python",
"Topic :: Software Development :: Testing",
"Topic :: Software Development :: Quality Assurance",
"Intended Audience :: Developers",
"Environment :: Console",
],
packages =[
'rflint',
'rflint.rules',
'rflint.parser',
],
scripts =[],
entry_points={
'console_scripts': [
"rflint = rflint.__main__:main"
]
}
)