-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
38 lines (34 loc) · 1.11 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
from setuptools import find_packages
from setuptools import setup
setup(
name='pre-commit-hooks',
description='Pre-commit hooks requiring a Java interpreter in the $PATH',
url='https://github.com/Lucas-C/pre-commit-hooks-java',
version='1.3.10',
author='Lucas Cimon',
author_email='[email protected]',
platforms='linux',
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
],
packages=find_packages('.'),
install_requires=[
'html5validator',
'jinja2',
'pybars3',
'six',
],
entry_points={
'console_scripts': [
'validate_html = pre_commit_hooks.validate_html:main',
],
},
)