forked from timClicks/slate
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (26 loc) · 1.04 KB
/
setup.py
File metadata and controls
28 lines (26 loc) · 1.04 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
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(name='slate',
version='0.4.1',
description='Extract text from PDF documents easily.',
author='Tim McNamara',
author_email='paperless@timmcnamara.co.nz',
keywords=('pdf', 'text', 'text-extraction'),
license = "GPL v3 or later",
exclude_package_data={'': ['.gitignore']},
packages=find_packages('src'),
package_dir={'': 'src'},
requires=['pdfminer'],
install_requires=['distribute'],
classifiers= [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Topic :: Office/Business',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Text Processing',
'Topic :: Utilities'],
long_description = open('README').read(),
url='http://github.com/timClicks/slate')