-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (26 loc) · 988 Bytes
/
Copy pathsetup.py
File metadata and controls
29 lines (26 loc) · 988 Bytes
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
from setuptools import setup, find_packages
requires = ["numpy", "pandas", "SQLAlchemy", "scikit-learn", "teradata",
"sqlalchemy-teradata", "teradatasql", "teradatasqlalchemy",
"paramiko", "scp"]
with open('README.rst', encoding='utf-8') as readme_file:
readme = readme_file.read()
setup(
name="sklearn2vantage",
version="0.1.9",
description="Module for converting sklearn model to Teradata Vantage"
+ " model",
long_description=readme,
url="https://github.com/Yukimura66/sklearn2vantage",
author="Akihiro Sanada",
author_email="akihiro.sanada@icloud.com",
license="MIT",
keywords="Teradata scikit-learn Vantage",
packages=find_packages(),
install_requires=requires,
classifiers=[
"Topic :: Database",
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: MIT License",
"Topic :: Scientific/Engineering :: Artificial Intelligence"
],
)