-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #568 from manics/updates
Use setuptools-scm to include files in sdist, switch to `python -mbuild`
- Loading branch information
Showing
6 changed files
with
12 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,7 @@ | ||
include LICENSE | ||
include LICENSE.dexie | ||
include README.md | ||
include pyproject.toml | ||
|
||
include package.json | ||
include ts*.json | ||
include webpack.config.js | ||
# setuptools-scm includes all source controlled files | ||
|
||
graft jupyter_offlinenotebook/static | ||
|
||
# Javascript files | ||
graft src | ||
graft style | ||
prune **/node_modules | ||
prune lib | ||
|
||
# Patterns to exclude from any directory | ||
global-exclude *~ | ||
global-exclude *.pyc | ||
global-exclude *.pyo | ||
global-exclude .git | ||
global-exclude .ipynb_checkpoints |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
build==1.0.3 | ||
jupyter_packaging==0.12.3 | ||
flaky==3.7.0 | ||
nbclassic==1.0.0 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,13 @@ | ||
[build-system] | ||
requires = [ | ||
"jupyter_packaging~=0.7.0", | ||
"jupyterlab>=3.0.0,==3.*", # jlpm is used to build static js | ||
"setuptools>=40.8.0", | ||
"jupyter_packaging~=0.12.3", | ||
"jupyterlab~=4.0", # jlpm is used to build static js | ||
"setuptools>=60", | ||
"setuptools-scm>=8", | ||
"wheel" | ||
] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[tool.setuptools_scm] | ||
# Used to ensure all files are packaged in the sdist | ||
# This is not used for versioning |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters