forked from Ant-Brain/EfficientWord-Net
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
22 lines (20 loc) · 749 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from setuptools import setup
from glob import glob
setup(
name = 'EfficientWord-Net',
version = '0.2.2',
description = 'Few Shot Learning based Hotword Detection Engine',
long_description = open("./README.md",'r').read(),
long_description_content_type = 'text/markdown',
url = 'https://github.com/Ant-Brain/EfficientWord',
#py_modules = ['efficientword'],
packages = ['eff_word_net'],
install_requires = open("./requirements.txt",'r').read().split("\n"),
classifiers = [
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
include_package_data=True,
)