-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
31 lines (27 loc) · 908 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
from setuptools import setup, find_packages
requires = [
"numpy>=1.13.1",
"scipy>=0.19.1",
"scikit-learn>=0.18.2",
"matplotlib>=2.0.2",
"pandas>=0.20.2"
]
setup(
name="karura",
version="0.1",
description="karura enables you to use machine learning automatically & interactively",
url="https://github.com/chakki-works/karura",
author="icoxfog417",
author_email="icoxfog417@yahoo.co.jp",
license="Apache License 2.0",
keywords="machine-learning kintone slackbot",
packages=find_packages(exclude=["doc", "karura-kintone", "tests", "trained_models"]),
install_requires=requires,
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
],
)