-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
31 lines (28 loc) · 1.06 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
from pathlib import Path
from setuptools import setup
setup(
name='ebookmeta',
version='1.2.11',
author='Dmitrii Korpushov',
author_email='dnkorpushov@gmail.com',
packages=['ebookmeta'],
url='https://github.com/dnkorpushov/ebookmeta',
license='MIT',
description='Read/write ebook metadata for fb2, epub2 and epub3 files',
long_description_content_type='text/markdown',
long_description=(Path(__file__).parent / "README.md").read_text(),
keywords=['ebook', 'epub', 'metadata', 'fb2'],
classifiers=[
'Operating System :: OS Independent',
'Topic :: Software Development',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Topic :: Software Development :: Libraries :: Python Modules',
],
install_requires=['lxml']
)