forked from ccnmtl/django-pagetree-epub
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
26 lines (23 loc) · 736 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 __future__ import unicode_literals
import os
from setuptools import setup
ROOT = os.path.abspath(os.path.dirname(__file__))
setup(
name="django-pagetree-epub",
version="0.3.0",
author="Anders Pearson",
author_email="[email protected]",
url="https://github.com/ccnmtl/django-pagetree-epub",
description="make an epub from a pagetree site",
long_description=open(
os.path.join(ROOT, 'README.markdown')).read(),
install_requires=['Django>=1.8', 'nose',
'django-pagetree', 'epubbuilder'],
scripts=[],
license="BSD",
platforms=["any"],
zip_safe=False,
package_data = {'': ['*.*']},
packages=['pagetreeepub'],
test_suite='nose.collector',
)