-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
25 lines (23 loc) · 1.08 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
from setuptools import setup
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text(encoding="utf-8")
from Cython.Build import cythonize
setup(
ext_modules=cythonize(["MorphologicalAnalysis/*.pyx", "DisambiguationCorpus/*.pyx"],
compiler_directives={'language_level': "3"}),
name='NlpToolkit-MorphologicalAnalysis-Cy',
version='1.0.30',
packages=['MorphologicalAnalysis', 'MorphologicalAnalysis.data', 'DisambiguationCorpus'],
package_data={'MorphologicalAnalysis': ['*.pxd', '*.pyx', '*.c', '*.py'],
'DisambiguationCorpus': ['*.pxd', '*.pyx', '*.c', '*.py'],
'MorphologicalAnalysis.data': ['*.xml']},
url='https://github.com/StarlangSoftware/TurkishMorphologicalAnalysis-Cy',
license='',
author='olcaytaner',
author_email='[email protected]',
description='Turkish Morphological Analysis',
install_requires=['NlpToolkit-Corpus-Cy'],
long_description=long_description,
long_description_content_type='text/markdown'
)