-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (31 loc) · 1015 Bytes
/
setup.py
File metadata and controls
32 lines (31 loc) · 1015 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
from setuptools import setup, find_packages
setup(
name='github-dl',
version='0.1a9',
description='a command line tool for downloading repositories and gists',
url='https://github.com/cameres/github-dl',
author='Connor Ameres',
author_email='connorameres@gmail.com',
license='Mozilla Public License 2.0 (MPL 2.0)',
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)',
'Topic :: Software Development',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.5'
],
keywords='github gists download',
py_modules=['github_dl'],
packages=find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
install_requires=[
'click',
'pygithub',
'gitpython',
'requests'
],
entry_points='''
[console_scripts]
github-dl=github_dl:github_dl
gist-dl=github_dl:gist_dl
'''
)