Skip to content

Commit

Permalink
Merge pull request #43 from xhochy/pyproject.toml
Browse files Browse the repository at this point in the history
Move to pyproject.toml and setuptools_scm
  • Loading branch information
xhochy authored Aug 18, 2023
2 parents f86bacf + 790b719 commit 6414046
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 32 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ jobs:
fail-fast: true
steps:
- uses: actions/checkout@v3
- name: Fetch full git history
run: git fetch --prune --unshallow
- name: Set up Conda env
uses: mamba-org/setup-micromamba@875557da4ee020f18df03b8910a42203fbf02da1
with:
Expand Down
31 changes: 31 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,34 @@
[build-system]
requires = ["setuptools", "setuptools-scm", "wheel"]

[tool.setuptools_scm]
version_scheme = "post-release"

[project]
name = "jupyter_vscode_proxy"
description = "VS Code extension for Jupyter"
readme = "README.md"
dynamic = ["version"]
authors = [
{name = "Tim Head", email = "[email protected]"},
]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Framework :: Juypter",
]
requires-python = ">=3.8"
license = {text = "BSD-3-clause"}

[project.urls]
repository = "https://github.com/betatim/vscode-binder"

[project.entry-points.jupyter_serverproxy_servers]
vscode = "jupyter_vscode_proxy:setup_vscode"

[tool.black]
exclude = '''
/(
Expand Down
2 changes: 0 additions & 2 deletions setup.cfg

This file was deleted.

30 changes: 0 additions & 30 deletions setup.py

This file was deleted.

0 comments on commit 6414046

Please sign in to comment.