-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
33 lines (30 loc) · 813 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
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 = "idNet",
version = "1.0",
author = "Jonathan Dunn",
author_email = "[email protected]",
description = ("Language Identification, Dialect Identification"),
license = "LGPL 3.0",
url = "https://gitlab.com",
keywords = "language id, dialect id",
packages = find_packages(exclude=["*.pyc", "__pycache__"]),
package_data={'': []},
install_requires=["cytoolz",
"gensim",
"numpy",
"pandas",
"scipy",
"sklearn",
"keras"
"numba"
],
include_package_data=True,
long_description=read('README.md'),
)