forked from WZBSocialScienceCenter/germalemma
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
61 lines (47 loc) · 1.71 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
"""
geovoronoi setuptools based setup module
"""
import os
from setuptools import setup, find_packages
import germalemma
GITHUB_URL = 'https://github.com/WZBSocialScienceCenter/germalemma'
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name=germalemma.__title__,
version=germalemma.__version__,
description='A lemmatizer for German language text.',
long_description=long_description,
long_description_content_type='text/markdown',
url=GITHUB_URL,
project_urls={
'Source': GITHUB_URL,
'Tracker': GITHUB_URL + '/issues',
},
author='Markus Konrad',
author_email='markus.konrad@wzb.eu',
license='Apache 2.0',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Utilities',
],
keywords='text lemmatization normalization textmining textanalysis mining preprocessing',
packages=find_packages(),
package_data={
'germalemma': ['data/lemmata.pickle']
},
python_requires='>=3.6',
install_requires=['PatternLite>=3.6', 'Pyphen>=0.9.5']
)