-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
37 lines (35 loc) · 1.05 KB
/
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
36
37
from setuptools import setup,find_packages
with open("README.md", encoding='utf-8') as fh:
long_description = fh.read()
setup(
name="embml",
version="0.0.5",
author="Lucas Tsutsui da Silva",
author_email="lucastsui@hotmail.com",
description="A tool to support using classification models in low-power microcontroller-based hardware",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/lucastsutsui/embml",
packages=find_packages(),
classifiers=[
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.7",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
],
install_requires=[
'javaobj-py3',
'numpy',
'scikit-learn'
],
license="GPL3",
keywords=[
'weka',
'scikit-learn',
'microcontroller',
'classifier',
'embedded'
],
python_requires='>=2.7',
include_package_data=True,
)