-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpyproject.toml
40 lines (37 loc) · 1.11 KB
/
pyproject.toml
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["textualheatmap"]
include-package-data = true
[project]
name = "textualheatmap"
description = "Create interactive textual heat maps for Jupiter notebooks"
version = "1.2.0"
authors = [
{name = "Andreas Madsen", email = "[email protected]"},
]
readme = {file = 'README.md', content-type='text/markdown'}
license = {text = "MIT"}
requires-python = ">=3.8"
keywords = ["saliency", "heatmap", "text", "textual", "jupyter", "colab", "interactive"]
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules'
]
dependencies = [
"ipython"
]
[project.optional-dependencies]
testing = [
"nose",
"jupyterlab",
"tensorflow"
]