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.
10 lines
230 B
Python
10 lines
230 B
Python
7 years ago
|
from setuptools import setup
|
||
|
|
||
|
setup(
|
||
|
name='pdfsearch',
|
||
|
version='0.1.0',
|
||
|
packages=['pdfsearch'],
|
||
|
author='Dan Howe',
|
||
|
author_email='d.howe@wrl.unsw.edu.au',
|
||
|
description='Search for text strings inside a pdf')
|