-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
48 lines (40 loc) · 1.19 KB
/
setup.py
File metadata and controls
48 lines (40 loc) · 1.19 KB
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
45
46
47
48
#!/usr/bin/env python
from setuptools import setup
version = __import__('layout').__version__
setup(
name='layout',
packages=[
'layout', 'layout.datatypes', 'layout.elements',
'layout.managers', 'layout.pages'
],
version=version,
description='Content Layout Engine',
author='Ian Millington',
author_email='idmillington@googlemail.com',
url='http://github.com/idmillington/layout',
download_url='https://github.com/idmillington/layout/tarball/master',
keywords=['pdf', 'layout', 'print', 'design'],
classifiers=[
"Programming Language :: Python",
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Multimedia :: Graphics",
],
zip_safe=False,
install_requires=[
# Optional modules
#'pillow',
#'reportlab>=2.0',
#'pdfrw>=0.1',
# Documentation
#'Jinja2>=2.5.5',
#'Pygments>=1.4',
#'Sphinx>=1.0.7',
#'docutils>=0.7',
# Testing
#'nose>=1.0'
]
)