-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
21 lines (19 loc) · 886 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from setuptools import setup
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text(encoding="utf-8")
setup(
name='NlpToolkit-DataGenerator',
version='1.0.7',
packages=['DataGenerator', 'DataGenerator.Attribute', 'DataGenerator.CorpusGenerator',
'DataGenerator.DatasetGenerator', 'DataGenerator.InstanceGenerator'],
url='https://github.com/StarlangSoftware/DataGenerator-Py',
license='',
author='olcaytaner',
author_email='olcay.yildiz@ozyegin.edu.tr',
description='Classification dataset generator library for high level Nlp tasks',
install_requires=['NlpToolkit-AnnotatedTree', 'NlpToolkit-Classification',
'NlpToolkit-MorphologicalDisambiguation'],
long_description=long_description,
long_description_content_type='text/markdown'
)