-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·50 lines (43 loc) · 1.59 KB
/
Copy pathsetup.py
File metadata and controls
executable file
·50 lines (43 loc) · 1.59 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#! /usr/bin/env python3
# -*- coding: utf8 -*-
from __future__ import print_function
import os
import sys
from setuptools import setup
try:
os.chdir(os.path.dirname(sys.argv[0]))
except:
pass
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = "Gecco",
version = "0.3.0", #also update gecco.py VERSION variable!
author = "Maarten van Gompel",
author_email = "proycon@anaproy.nl",
description = ("Generic Environment for Context-Aware Correction of Orthography"),
license = "GPL",
keywords = "spelling corrector spell check nlp computational_linguistics rest",
url = "https://github.com/proycon/gecco",
packages=['gecco','gecco.modules','gecco.helpers'],
long_description=read('README.md'),
long_description_content_type="text/markdown",
classifiers=[
"Development Status :: 4 - Beta",
"Topic :: Text Processing :: Linguistic",
"Programming Language :: Python :: 3.2",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Operating System :: POSIX",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
],
entry_points = {
'console_scripts': [
'gecco = gecco.gecco:main'
]
},
package_data = {'gecco':[] },
install_requires=['lxml >= 2.2','pynlpl >= 1.2.9', 'folia >= 2.2.0','pyyaml','colibricore >= 2.4', 'python-ucto >= 0.2.2','python3-timbl','psutil','python-Levenshtein']
)