Skip to content

Commit 56da155

Browse files
committed
add setup.py
1 parent 2791264 commit 56da155

File tree

2 files changed

+26
-0
lines changed

2 files changed

+26
-0
lines changed

MANIFEST.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
include comicepub/template/*

setup.py

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
import setuptools
2+
3+
with open("README.md", "r") as fh:
4+
long_description = fh.read()
5+
6+
setuptools.setup(
7+
name="comicepub",
8+
version="0.1.0",
9+
author="ShinCurry",
10+
author_email="[email protected]",
11+
description="Japanese comic EPUB3 generate tool",
12+
long_description=long_description,
13+
long_description_content_type="text/markdown",
14+
url="https://github.com/moeoverflow/comicepub",
15+
packages=setuptools.find_packages(),
16+
include_package_data=True,
17+
classifiers=[
18+
"Programming Language :: Python :: 3",
19+
"License :: OSI Approved :: MIT License",
20+
"Operating System :: OS Independent",
21+
],
22+
install_requires=[
23+
'Jinja2>=2.10.1'
24+
],
25+
)

0 commit comments

Comments
 (0)