forked from imgurbot12/pypub
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
38 lines (36 loc) · 984 Bytes
/
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
from setuptools import setup, find_packages
with open("README.md", "r") as f:
readme = f.read()
setup(
name='pypub3',
version='2.0.2',
license='MIT',
author='Andrew Scott',
author_email='[email protected]',
url='https://github.com/imgurbot12/pypub',
description="A python3 library to generate custom epub books.",
long_description=readme,
long_description_content_type="text/markdown",
python_requires='>=3.6',
packages=find_packages(),
install_requires=[
'pyxml3>=0.0.2',
'jinja2>=3.1.2',
'dataclasses>=0.6',
'pillow>=10.0.0',
],
package_data={
'pypub': [
'templates/*',
'static/*',
'static/css/*',
'static/img/*',
'static/fonts/*'
]
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
)