-
Notifications
You must be signed in to change notification settings - Fork 139
/
setup.py
38 lines (34 loc) · 1.19 KB
/
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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#!/usr/bin/env python
from setuptools import setup, find_packages
import sys
PYTHON_3 = sys.version_info[0] == 3
if PYTHON_3:
pdfminer = 'pdfminer3k'
else:
pdfminer = 'pdfminer'
with open('README') as f:
long_description = f.read()
setup(name='slate',
version='0.5.2',
description='Extract text from PDF documents easily.',
author='Tim McNamara',
author_email='[email protected]',
keywords=('pdf', 'text', 'text-extraction'),
license = "MIT License",
exclude_package_data={'': ['.gitignore']},
packages=find_packages('src'),
package_dir={'': 'src'},
requires=[pdfminer],
install_requires=['setuptools', pdfminer],
classifiers= [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Topic :: Office/Business',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Text Processing',
'Topic :: Utilities'],
long_description=long_description,
url='https://github.com/timClicks/slate')