forked from revolunet/pypdftk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (20 loc) · 726 Bytes
/
setup.py
File metadata and controls
21 lines (20 loc) · 726 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/usr/bin/env python
from distutils.core import setup
setup(
name='pypdftk',
description='''Python wrapper for PDFTK''',
long_description=open('README.md').read(),
version='0.3',
author='Julien Bouquillon',
author_email='julien@revolunet.com',
url='http://github.com/revolunet/pypdftk',
py_modules=['pypdftk'],
scripts=['pypdftk.py'],
classifiers=['Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Utilities'],
)