forked from sebdah/git-pylint-commit-hook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (27 loc) · 874 Bytes
/
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
""" Setup script for PyPI """
from setuptools import setup
setup(
name='git-pylint-commit-hook',
version='2.0.9',
license='Apache License, Version 2.0',
description='Git commit hook that checks Python files with pylint',
author='Sebastian Dahlgren',
author_email='[email protected]',
url='http://www.sebastiandahlgren.se',
keywords="git commit pre-commit hook pylint python",
platforms=['Any'],
packages=['git_pylint_commit_hook'],
scripts=['git-pylint-commit-hook'],
include_package_data=True,
zip_safe=False,
install_requires=[
'pylint',
],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python'
]
)