-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
87 lines (65 loc) · 2.51 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
#!/usr/bin/env python
"""File setup.py
Copyright 2012-2020 LangTech Sarl ([email protected])
---------------------------------------------------------------------------
This file is part of the LTTL package v2.0.
LTTL v2.0 is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
LTTL v2.0 is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with LTTL v2.0. If not, see <http://www.gnu.org/licenses/>.
"""
from __future__ import unicode_literals
from setuptools import setup, find_packages
from codecs import open
from os import path
__version__ = "1.0.24"
LONG_DESCRIPTION = open(
path.join(path.dirname(__file__), 'README.rst')
).read()
package_version = '2.0.12'
url = 'https://github.com/axanthos/LTTL/tarball/v' + package_version
setup(
name='LTTL',
version=package_version,
description='LangTech Text Library (LTTL) for text processing and analysis',
long_description=LONG_DESCRIPTION,
# The project's main homepage.
url='https://github.com/axanthos/LTTL',
# Author details
author='LangTech Sarl',
author_email='[email protected]',
# Choose your license
license='GNU GPL v3',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Operating System :: OS Independent',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Text Processing :: General',
'Topic :: Text Processing :: Linguistic',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
],
keywords=('text mining', 'text analysis', 'text processing'),
packages=find_packages(exclude=['docs', 'tests', 'bugs']),
install_requires=[
'setuptools',
'numpy',
'scipy',
'future',
'backports.functools_lru_cache',
],
test_suite='nose.collector',
tests_require='nose',
download_url=url,
)