-
Notifications
You must be signed in to change notification settings - Fork 62
/
Copy pathsetup.py
24 lines (22 loc) · 814 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
#!/usr/bin/env python
from distutils.core import setup
with open("README.rst", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name='pypdftk',
description='''Python wrapper for PDFTK''',
long_description=long_description,
version='0.5',
author='Julien Bouquillon',
author_email='[email protected]',
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 License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Utilities'],
)