-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
41 lines (34 loc) · 1008 Bytes
/
setup.cfg
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
[metadata]
name = dowml
version = attr: dowml.VERSION
author = Xavier Nodet
author_email = xavier.nodet@gmail.com
description = Submit existing Decision Optimization instances to WML
long_description = file: README.md, CHANGES.txt
long_description_content_type = text/markdown
license=Apache License 2.0
url = https://github.com/nodet/dowml
project_urls =
classifiers =
Programming Language :: Python :: 3.8
License :: OSI Approved :: Apache Software License
Operating System :: OS Independent
Development Status :: 4 - Beta
Environment :: Console
Intended Audience :: Developers
Topic :: Scientific/Engineering :: Artificial Intelligence
Topic :: Software Development :: Libraries
[options]
package_dir =
= src
packages = find:
python_requires = >=3.8
install_requires =
ibm-watson-machine-learning >= 1.0.95.1
[options.packages.find]
where = src
[options.entry_points]
console_scripts =
dowml = dowml.interactive:interactive
[flake8]
max-line-length = 120