-
Notifications
You must be signed in to change notification settings - Fork 29
/
setup.py
52 lines (45 loc) · 1.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
'''
# Release notes
```
-----------------------------------------+
| version |
day | month | year | major minor patch |
-----------------------------------------+
16 AUG 2018 0 1 1
| language and dialect abstraction
| dialects: çuvaşca, azerice
13 AUG 2018 0 1 0
| initial implementation of
| phonology, grammatical cases, predication
```
'''
from setuptools import setup, find_packages
import re
with open("README.md", encoding='utf-8') as f:
readme = f.read()
TAG_RE = re.compile(r'<[^>]+>')
readme_clean = TAG_RE.sub('', readme)
setup(
name='kefir',
version='0.1.3',
description='Kefir is a natural language processing kit for Turkic languages',
long_description=readme_clean,
long_description_content_type='text/markdown',
url='https://github.com/yogurt-cultures/kefir',
author='Yogurt Cultures',
author_email='[email protected]',
license='MIT',
packages=find_packages(),
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: Implementation :: CPython',
'Topic :: Text Processing :: Linguistic',
'Natural Language :: Turkish',
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
],
)