forked from miohtama/vvv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
51 lines (45 loc) · 1.54 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
51
"""
Yo dawg
"""
from setuptools import setup, find_packages
LONG_DESCRIPTION = open("README.rst").read()
setup(name = "vvv",
version = "0.1.1",
long_description = LONG_DESCRIPTION,
description = "A convenience utility for software source code validation and linting",
author = "Mikko Ohtamaa",
author_email = "[email protected]",
url = "https://github.com/miohtama/vvv",
install_requires = ["setuptools",
"PyYAML==3.10",
"plac==0.9.0",
"requests==0.11.1"
],
packages = find_packages(exclude=["tests"]),
classifiers=[
"Programming Language :: Python",
],
license="GPL3+",
# Don't install as zipped as we want to poke non-py files inside dist archive
zip_safe = False,
include_package_data = True,
entry_points="""
# -*- Entry points: -*-
[vvv]
tabs=vvv.validators.tabs:TabsPlugin
linelength = vvv.validators.linelength:LineLengthPlugin
css = vvv.validators.css:CSSPlugin
jshint = vvv.validators.jshint:JSHintPlugin
pylint = vvv.validators.pylint:PylintPlugin
pdb = vvv.validators.pdb:PdbPlugin
rst = vvv.validators.rst:RestructuredTextPlugin
[console_scripts]
vvv = vvv.main:entry_point
stn = vvv.main:entry_point
prkl = vvv.main:entry_point
vvv-install-git-pre-commit-hook = vvv.hooks.git:setup_hook
vvv-validate-rst = vvv.scripts.validaterst:run
vvv-expand-tabs = vvv.scripts.expandtabs:run
ghetto-ci = ghettoci.main:entry_point
""",
)