forked from deanmalmgren/textract
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
42 lines (36 loc) · 1.06 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
40
41
42
import glob
import os
from setuptools import setup
import textract
# get all of the scripts
scripts = glob.glob("bin/*")
# read in the description from README
with open("README.rst") as stream:
long_description = stream.read()
github_url='https://github.com/deanmalmgren/textract'
# read in the dependencies from the virtualenv requirements file
dependencies = []
filename = os.path.join("requirements", "python")
with open(filename, 'r') as stream:
for line in stream:
package = line.strip().split('#')[0]
if package:
dependencies.append(package)
setup(
name=textract.__name__,
version=textract.VERSION,
description="extract text from any document. no muss. no fuss.",
long_description=long_description,
url=github_url,
download_url="%s/archives/master" % github_url,
author='Dean Malmgren',
author_email='dean.malmgren@datascopeanalytics.com',
license='MIT',
scripts=scripts,
packages=[
'textract',
'textract.parsers',
],
install_requires=dependencies,
zip_safe=False,
)