-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
47 lines (43 loc) · 1.35 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
41
42
43
44
45
46
47
[build-system]
# setuptools requirement due to specifiying the version the in pyproject.toml
# https://packaging.python.org/en/latest/guides/single-sourcing-package-version/
requires = [
"setuptools>=61.0.0",
"wheel"
]
build-backend = "setuptools.build_meta"
[project]
name = "scwidgets"
description = "ipywidgets for the creation of interactive code demos and educational notebooks"
readme = "README.rst"
requires-python = ">=3.8"
license = {text = "BSD-3-Clause"}
classifiers = [
"Intended Audience :: Science/Research",
"Operating System :: POSIX",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Chemistry",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"ipywidgets>=8.0.0",
"numpy<2.0.0",
"widget_code_input>=4.0.13",
"matplotlib",
"termcolor"
]
dynamic = ["version"]
[tool.setuptools.dynamic]
version = {attr = "scwidgets.__version__"}
readme = {file = ["README.rst"]}
[tool.setuptools.package-data]
scwidgets = ["css/widgets.css"]
[tool.isort]
profile = "black"