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.
@@ -0,0 +1,3 @@
1
+ venv
2
+ .env
3
+ dist
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
@@ -0,0 +1,3 @@
1
+ Metadata-Version: 2.1
2
+ Name: jobkit
3
+ Version: 0.0.1
@@ -0,0 +1,7 @@
1
+ [build-system]
2
+ build-backend = "hatchling.build"
3
+ requires = ["hatchling"]
4
+
5
+ [project]
6
+ name = "jobkit"
7
+ version = "0.0.1"
File without changes