You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
349 B
Python
12 lines
349 B
Python
7 years ago
|
from setuptools import setup
|
||
|
|
||
|
setup(
|
||
|
name='pdfunlock',
|
||
|
version='0.3.0',
|
||
|
packages=['pdfunlock'],
|
||
|
install_requires=['tqdm'],
|
||
|
entry_points={'console_scripts':['pdfunlock = pdfunlock:main']},
|
||
|
author='Dan Howe',
|
||
|
author_email='d.howe@wrl.unsw.edu.au',
|
||
|
description='Remove security features from encrypted pdfs')
|