-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (27 loc) · 785 Bytes
/
setup.py
File metadata and controls
32 lines (27 loc) · 785 Bytes
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
"""Quack setup script."""
from setuptools import setup
setup(
name='quack',
version='0.1.0',
packages=['quack'],
# dependencies
install_requires=[
'argparse',
'gitpython',
'pyyaml'
],
# metadata for upload to PyPI
author='Love Sharma',
author_email='contact@lovesharma.com',
description=('Insert specific module / folder from given '
'repositories in yaml configurations.'),
license='MIT',
keywords='quack build submodule module dependencies'.split(),
url='https://github.com/zonito/quack', # project homepage
download_url='https://github.com/zonito/quack/archive/0.1.0.tar.gz',
entry_points={
'console_scripts': [
'quack=quack.quack:main'
]
}
)