-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
46 lines (44 loc) · 1.08 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
45
46
"""
Setup file for ff2zim
"""
from setuptools import setup
setup(
name="ff2zim",
version="0.1.0",
description="Build ZIM files for fanfictions",
long_description=open('README.md', "r").read(),
long_description_content_type="text/markdown",
keywords="ZIM fanfiction fanfic fanficfare",
author="IMayBeABitShy",
url="https://github.com/IMayBeABitShy/ff2zim",
packages=[
"ff2zim",
],
include_package_data=True,
install_requires=[
"requests",
"fanficfare",
"bs4",
"six",
],
extras_require={
"minify": [
"htmlmin",
"csscompressor",
"python-minifier",
],
},
entry_points={
"console_scripts": [
"ff2zim = ff2zim.cli:main",
],
},
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Utilities",
"Topic :: System :: Archiving",
],
)