-
Notifications
You must be signed in to change notification settings - Fork 67
/
setup.py
58 lines (53 loc) · 1.78 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
# -*- coding: utf8 -*-
#
# This file were created by Python Boilerplate. Use Python Boilerplate to start
# simple, usable and best-practices compliant Python projects.
#
# Learn more about it at: http://github.com/fabiommendes/python-boilerplate/
#
import setuptools
from os import path
__version__ = '1.4.1'
# read contents of README file
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as file:
readme_file = file.read()
setuptools.setup(
# Basic info
name='assistant_improve_toolkit',
author='IBM Watson',
author_email='[email protected]',
maintainer='Zhe Zhang',
maintainer_email='[email protected]',
url='https://github.com/watson-developer-cloud/assistant-improve-recommendations-notebook',
description='Assistant Improve Toolkit',
license='Apache 2.0',
long_description=readme_file,
long_description_content_type='text/markdown',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries :: Python Modules'
],
# Packages and depencies
package_dir={'': 'src'},
packages=setuptools.find_packages('src'),
install_requires=[
'pandas==1.2.1',
'bokeh==3.2.0',
'tqdm==4.65.0',
'scikit-learn>=0.21.3',
'matplotlib==3.2.1',
'XlsxWriter==1.2.8',
'ibm-watson==7.0.0',
'numpy==1.23.5',
'requests==2.29.0'
],
zip_safe=False,
platforms='any',
)