-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
40 lines (39 loc) · 978 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
29
30
31
32
33
34
35
36
37
38
39
40
from setuptools import setup
import snapcommit
setup(
name=snapcommit.name,
version=snapcommit.version,
author='Kasper Jacobsen',
author_email='[email protected]',
description=snapcommit.__doc__,
url=snapcommit.project_url,
license='MIT',
keywords='',
packages=[
'snapcommit'
],
entry_points={
'console_scripts': [
'snap-commit = snapcommit.cli:cli',
'snap-commit-hook = snapcommit.hook:main',
]
},
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: Unix',
'Programming Language :: Python',
'Topic :: Utilities',
],
install_requires=[
'Pillow',
'click',
'pygit2',
'requests',
'v4l2',
'v4l2capture',
],
)