Skip to content

Commit ad27c84

Browse files
committed
Add minimal stuff required to build a mock package via poetry
1 parent c3f3102 commit ad27c84

File tree

2 files changed

+17
-0
lines changed

2 files changed

+17
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
# maven / release generated files
66
target/
77
pom.xml.releaseBackup
8+
dist/
89

910
# bytecode created when importing directly in Jython:
1011
*py.class

pyproject.toml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
### WARNING: this is exlusively useful for creating a mock-package that can be
2+
### used to e.g. generate API docs with pdoc!
3+
4+
[tool.poetry]
5+
authors = ["Niko Ehrenfeuchter <[email protected]>"]
6+
description = "Jython package for using SciJava's LogService for logging."
7+
name = "sjlogging"
8+
readme = "README.md"
9+
version = "0.5.2"
10+
11+
[tool.poetry.dependencies]
12+
python = "^3.10"
13+
14+
[build-system]
15+
build-backend = "poetry.core.masonry.api"
16+
requires = ["poetry-core"]

0 commit comments

Comments
 (0)