-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
25 lines (23 loc) · 1000 Bytes
/
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(["WordNet/*.pyx", "WordNet/Similarity/*.pyx"],
compiler_directives={'language_level': "3"}),
name='NlpToolkit-WordNet-Cy',
version='1.0.13',
packages=['WordNet', 'WordNet.Similarity', 'WordNet.data'],
package_data={'WordNet': ['*.pxd', '*.pyx', '*.c', '*.py'],
'WordNet.Similarity': ['*.pxd', '*.pyx', '*.c'],
'WordNet.data': ['*.xml']},
url='https://github.com/StarlangSoftware/TurkishWordNet-Cy',
license='',
author='olcay',
author_email='olcay.yildiz@ozyegin.edu.tr',
description='Turkish WordNet KeNet',
install_requires=['NlpToolkit-MorphologicalAnalysis-Cy'],
long_description=long_description,
long_description_content_type='text/markdown'
)