forked from ooz/Confopy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (33 loc) · 1.12 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
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name="Confopy",
version="0.4.9",
url="https://github.com/ooz/Confopy",
author="Oliver Zscheyge",
author_email="oliverzscheyge@gmail.com",
packages=["confopy", "confopy.analysis", "confopy.localization", "confopy.model", "confopy.pdfextract", "confopy.localization.de", "confopy.localization.de.corpus_de"],
license="MIT License",
description="Evaluates the linguistic and structural quality of scientific texts.",
long_description=open("README.md").read(),
package_dir={"confopy.model": "confopy/model"},
package_data={"": ["README.md", "bin/confopy"],
"confopy.model": ["confopy_document.xsd"]},
include_package_data=True,
scripts=["bin/confopy"],
data_files = ["README.md"],
install_requires=[
"lxml >= 3.3.5",
"numpy == 1.6.2",
"nltk >= 3.0.0",
"Pattern == 2.6",
"pyenchant == 1.6.5",
"pdfminer == 20110515",
],
)
# formerly used lxml 2.3.2
# pyenchant is for spell checking
# other maybe deps:
#"pyyaml ==",