-
Notifications
You must be signed in to change notification settings - Fork 14
/
setup.py
39 lines (37 loc) · 1.14 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
#!/usr/bin/env python
# # coding: utf-8
from setuptools import find_packages, setup
long_description = open('README.md').read()
setup(
name='captainhook',
description='A collection of git commit hooks',
version='0.8.7',
long_description=long_description,
author='Alex Couper',
author_email='[email protected]',
url='https://github.com/alexcouper/captainhook',
zip_safe=False,
scripts=[
'scripts/captainhook'
],
install_requires=[
'docopt==0.6.1',
'flake8',
'isort>=4.1.1',
'bash',
],
packages=find_packages(),
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
('License :: OSI Approved :: GNU Library or Lesser '
'General Public License (LGPL)'),
'Operating System :: MacOS',
'Operating System :: POSIX',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)