-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (26 loc) · 833 Bytes
/
setup.py
File metadata and controls
28 lines (26 loc) · 833 Bytes
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
from setuptools import setup
def readme():
with open('README.md') as f:
return f.read()
setup(
name='ShortLanguageDetection',
description = 'A language detector for short string or chat.',
url='https://github.com/Interaction-Bot/LanguageDetection/',
author='Jourdelune',
license='MIT',
version='0.0.9',
long_description=readme(),
long_description_content_type='text/markdown',
install_requires=[
'fasttext-wheel',
'emoji',
'lingua-language-detector==1.3.1'
],
keywords = ["language", "detection", "nlp", "identification", "short"],
include_package_data=True,
package_data={
'ShortLanguageDetection.DictDetector': ['*'],
'ShortLanguageDetection.DictDetector.dict': ['*'],
'ShortLanguageDetection.models': ['*'],
},
)