This repository has been archived by the owner on Sep 9, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 78
/
setup.py
83 lines (78 loc) · 2.75 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
#!/usr/bin/env python
# Copyright 2013-2014 Sebastian Kreft
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import ast
import io
import os
from setuptools import setup, find_packages
with io.open(os.path.join('gitlint', 'version.py')) as f:
VERSION = ast.literal_eval(f.read().rsplit('=', 1)[1].strip())
with io.open('README.rst', encoding='utf-8') as f:
LONG_DESCRIPTION = f.read()
TEST_REQUIRES = ['nose>=1.3', 'mock', 'coverage', 'pyfakefs']
setup(
name='git-lint',
version=VERSION,
description='Git Lint',
long_description=LONG_DESCRIPTION,
author='Sebastian Kreft',
url='http://github.com/sk-/git-lint',
packages=find_packages(exclude=['test']),
package_dir={'gitlint': 'gitlint'},
package_data={
'gitlint': ['configs/*'],
'': ['README.rst', 'LICENSE']
},
scripts=[
'scripts/git-lint',
'scripts/pre-commit.git-lint.sh',
'scripts/pre-commit.hg-lint.sh',
'scripts/custom_linters/ini_linter.py',
'scripts/custom_linters/jpegtran-linter.sh',
'scripts/custom_linters/optipng-linter.sh',
'scripts/custom_linters/pngcrush-linter.sh',
'scripts/custom_linters/tidy-wrapper.sh',
],
install_requires=[
'docopt',
'pyyaml',
'pathlib2',
'termcolor',
# Packages specific to linters. They are optional, but to ease the use
# we prefer to put them here.
'docutils',
'html-linter',
],
tests_require=TEST_REQUIRES,
setup_requires=['nose>=1.3'],
extras_require={
':python_version == "2.7"': ['futures'],
'test': TEST_REQUIRES,
'dev': ['pycodestyle', 'pylint', 'yapf==0.23.0'],
},
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: Unix',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Software Development :: Version Control',
],
)