-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (30 loc) · 1.06 KB
/
setup.py
File metadata and controls
33 lines (30 loc) · 1.06 KB
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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(
name='ComicThief',
version='0.2.1',
description='Comic Books Scraper. Easy download comics and make .cbz files.',
long_description='',
author='Nuncjo',
author_email='zoreander@gmail.com',
url='https://github.com/nuncjo/comicthief',
license='MIT',
packages=find_packages(exclude=('tests', 'docs')),
package_data={'': ['*.*']},
include_package_data=True,
classifiers=(
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS",
"Operating System :: Unix",
"Programming Language :: Python",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
),
platforms=["Windows", "MacOS", "Unix"],
install_requires=['requests', 'tqdm', 'lxml']
)