-
Notifications
You must be signed in to change notification settings - Fork 63
/
Copy pathsetup.py
44 lines (42 loc) · 1.41 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
40
41
42
43
44
# -*- coding: utf-8 -*-
from setuptools import setup
def readme():
try:
with open('README.rst') as f:
return f.read()
except:
pass
setup(name = 'ctdl',
version = '1.5.0',
classifiers = [
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Internet',
],
keywords = 'content downloader bulk files',
description = 'Bulk file downloader on any topic.',
long_description = readme(),
url = 'https://github.com/nikhilkumarsingh/content-downloader',
author = 'Nikhil Kumar Singh',
author_email = '[email protected]',
license = 'MIT',
packages = ['ctdl'],
install_requires = ['requests', 'bs4', 'lxml', 'tqdm'],
dependency_links = ['git+https://github.com/nikhilkumarsingh/tqdm'],
include_package_data = True,
entry_points={
'console_scripts': [
'ctdl = ctdl.ctdl:main',
'ctdl-gui = ctdl.gui:main',
],
},
package_data={'': ['icon.png']},
zip_safe = False)