forked from dnkorpushov/ebookmeta
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
26 lines (23 loc) · 838 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
from setuptools import setup
setup(
name='ebookmeta',
version='0.11.2',
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',
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',
'Topic :: Software Development :: Libraries :: Python Modules',
],
install_requires=['lxml']
)