-
-
Notifications
You must be signed in to change notification settings - Fork 957
Expand file tree
/
Copy pathsetup.py
More file actions
52 lines (47 loc) · 1.4 KB
/
setup.py
File metadata and controls
52 lines (47 loc) · 1.4 KB
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
52
from setuptools import find_packages
from setuptools import setup
setup(
name='pre_commit',
description=(
'A framework for managing and maintaining multi-language pre-commit '
'hooks.'
),
url='https://github.com/pre-commit/pre-commit',
version='0.1.1',
author='Anthony Sottile',
author_email='[email protected]',
platforms='linux',
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: Implementation :: PyPy',
],
packages=find_packages('.', exclude=('tests*', 'testing*')),
package_data={
'pre_commit': [
'resources/pre-commit-hook'
]
},
install_requires=[
'argparse',
'asottile.cached_property',
'asottile.ordereddict',
'asottile.yaml',
'jsonschema',
'nodeenv>=0.9.4',
'plumbum',
'pyyaml',
'simplejson',
'virtualenv',
],
entry_points={
'console_scripts': [
'pre-commit = pre_commit.main:main',
'validate-config = pre_commit.clientlib.validate_config:run',
'validate-manifest = pre_commit.clientlib.validate_manifest:run',
],
},
)