jobkit 0.0.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- jobkit-0.0.1/.gitignore +3 -0
- jobkit-0.0.1/Makefile +24 -0
- jobkit-0.0.1/PKG-INFO +3 -0
- jobkit-0.0.1/pyproject.toml +7 -0
- jobkit-0.0.1/src/struct/__init__.py +0 -0
jobkit-0.0.1/.gitignore
ADDED
jobkit-0.0.1/Makefile
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
.DEFAULT_GOAL := all
|
|
2
|
+
|
|
3
|
+
.PHONY: build
|
|
4
|
+
build:
|
|
5
|
+
hatch build
|
|
6
|
+
|
|
7
|
+
.PHONY: publish-test
|
|
8
|
+
publish-test:
|
|
9
|
+
hatch publish --repo test --user __token__ --auth ${PYPI_TEST_TOKEN}
|
|
10
|
+
|
|
11
|
+
.PHONY: publish
|
|
12
|
+
publish:
|
|
13
|
+
hatch publish --repo main --user __token__ --auth ${PYPI_TOKEN}
|
|
14
|
+
|
|
15
|
+
.PHONY: clean
|
|
16
|
+
clean:
|
|
17
|
+
rm -rf dist/*
|
|
18
|
+
|
|
19
|
+
.PHONY: lint
|
|
20
|
+
lint:
|
|
21
|
+
autoflake --remove-all-unused-imports --recursive --in-place src/pyopp
|
|
22
|
+
|
|
23
|
+
.PHONY: all
|
|
24
|
+
all: clean lint build publish
|
jobkit-0.0.1/PKG-INFO
ADDED
|
File without changes
|