Skip to content

Commit 086f883

Browse files
authored
Merge pull request #115 from silx-kit/fix-setuptools
Fixed build configuration
2 parents 40bd1c9 + 422fa9f commit 086f883

File tree

2 files changed

+10
-6
lines changed

2 files changed

+10
-6
lines changed

pyproject.toml

+1-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
[build-system]
2-
requires = [
3-
"setuptools>=42",
4-
"wheel"
5-
]
2+
requires = ["setuptools"]
63
build-backend = "setuptools.build_meta"
74

85
[tool.pytest.ini_options]

setup.cfg

+9-2
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ classifiers =
1919
Programming Language :: JavaScript
2020

2121
[options]
22-
packages = find:
23-
include_package_data = True
22+
packages = jupyterhub_moss
23+
include_package_data = False
2424
python_requires = >=3.8
2525
install_requires =
2626
batchspawner>=1.0
@@ -29,6 +29,13 @@ install_requires =
2929
pydantic>=2.4.0,<3
3030
traitlets
3131

32+
[options.package_data]
33+
jupyterhub_moss =
34+
batch_script.sh
35+
form/*.css
36+
form/*.js
37+
templates/*.html
38+
3239
[options.extras_require]
3340
dev =
3441
black

0 commit comments

Comments
 (0)