forked from TakesxiSximada/slate3k
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
39 lines (35 loc) · 1.23 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
39
#!/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.rst') as f:
long_description = f.read()
setup(name='slate3k',
version='0.5.3',
description='Extract text from PDF documents easily.',
author='TakesxiSximada',
author_email='sximada@gmail.com',
keywords=('pdf', 'text', 'text-extraction'),
license = "MIT License",
exclude_package_data={'': ['.gitignore']},
packages=find_packages('src'),
package_dir={'': 'src'},
requires=[pdfminer],
install_requires=[pdfminer],
classifiers= [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.6',
'Topic :: Office/Business',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Text Processing',
'Topic :: Utilities'],
long_description=long_description,
url='https://github.com/TakesxiSximada/slate3k')