-
Notifications
You must be signed in to change notification settings - Fork 12
/
setup.py
44 lines (40 loc) · 1.12 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
32
33
34
35
36
37
38
39
40
41
42
43
44
# -*- coding: utf-8 -*-
import os
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='PDFutils',
version='1.1.3',
description='Django PDFutils',
long_description=(read('README.rst')),
author='Maxime Haineault',
author_email='[email protected]',
license='BSD',
url='https://github.com/h3/django-pdfutils',
packages=find_packages(),
include_package_data=True,
package_data={'pdfutils': [
'README.rst',
'changelog',
]},
install_requires = [
'django>=1.4',
'decorator==3.4.0,<=4.0.2',
'reportlab==2.5',
'html5lib==0.90',
'httplib2==0.9',
'pyPdf==1.13',
'xhtml2pdf==0.0.4',
],
zip_safe=False,
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Framework :: Django',
]
)