-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
31 lines (28 loc) · 945 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
import os
import setuptools
from setuptools import setup, find_packages
from distutils.core import setup
# Utility function to read the README file.
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = "pacific_CodeSwitch",
version = "0.1",
author = "Jonathan Dunn",
author_email = "[email protected]",
description = ("Detect code switching in Pacific languages"),
license = "LGPL 3.0",
url = "https://github.com/jonathandunn/pacific_CodeSwitch.git",
keywords = "language id, code switching, mri",
packages = find_packages(exclude=["*.pyc", "__pycache__"]),
package_data={'': ['eng_mri.v24.2.NZ.Multi.Ngrams_v1.50k.50x1_layers.*','eng_mri.*']},
install_requires=["cytoolz",
"numpy",
"scikit-learn",
"cleantext",
"fasttext",
],
include_package_data=True,
long_description=read('README.md'),
long_description_content_type='text/markdown',
)