-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
28 lines (25 loc) · 930 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
#!/usr/bin/env python
import os
from setuptools import setup
setup(
name='yael',
packages=['yael', 'yael.examples'],
version='0.0.9',
description='yael (Yet Another EPUB Library) is a Python library for reading, manipulating, and writing EPUB 2/3 files.',
author='Alberto Pettarin',
author_email='[email protected]',
url='https://github.com/pettarin/yael',
license='MIT',
long_description=open('README.txt').read(),
keywords=['epub', 'yael', 'EPUB 2', 'EPUB 3'],
install_requires=['lxml >= 3.4.0', 'simplejson >= 3.6.0'],
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules"
]
)