-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathsetup.py
executable file
·45 lines (39 loc) · 1.44 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
from setuptools import setup, find_packages
import os
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, "README.rst")).read()
NEWS = open(os.path.join(here, "NEWS.txt")).read()
version = "0.6.0"
install_requires = ["pylint"]
setup(
name="setuptools-lint",
version=version,
description="Setuptools command for pylint",
long_description=README + "\n\n" + NEWS,
classifiers=[
"Topic :: Documentation",
"Framework :: Setuptools Plugin",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Topic :: Software Development :: Documentation",
"Topic :: Software Development :: Libraries :: Python Modules",
],
keywords="pylint setuptools command",
author="Xavier Barbosa",
author_email="",
url="https://github.com/johnnoone/setuptools-pylint",
license="BSD",
packages=find_packages("src"),
package_dir={"": "src"},
include_package_data=True,
zip_safe=False,
install_requires=install_requires,
entry_points={
"distutils.commands": ["lint = setuptools_lint.setuptools_command:PylintCommand"],
"distutils.setup_keywords": ["lint_rcfile = setuptools_lint.setuptools_command:validate_rcfile"], # NOQA
},
)