-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (31 loc) · 1022 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
26
27
28
29
30
31
32
33
34
35
#! /usr/bin/python
from setuptools import setup
from io import open
# to install type:
# python setup.py install --root=/
def readme():
with open('README.md', encoding="utf8") as f:
return f.read()
setup(name='ltck', version='0.1.1',
author='Mohamed Mahrous',
author_email='[email protected]',
url='https://github.com/lingorithm/lim',
license='MIT',
description="Lingorithm Text Classification Kit",
long_description=readme(),
long_description_content_type='text/markdown',
package_dir={'ltck': 'ltck', },
packages=['ltck'],
install_requires=[
'llck'
],
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Natural Language :: Arabic',
'Intended Audience :: Developers',
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
'Topic :: Text Processing :: Linguistic',
],
)