contextd 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
@@ -0,0 +1,21 @@
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
+
20
+ .PHONY: all
21
+ all: clean build publish
@@ -0,0 +1,3 @@
1
+ Metadata-Version: 2.3
2
+ Name: contextd
3
+ Version: 0.0.1
@@ -0,0 +1,10 @@
1
+ [build-system]
2
+ build-backend = "hatchling.build"
3
+ requires = ["hatchling"]
4
+
5
+ [project]
6
+ name = "contextd"
7
+ version = "0.0.1"
8
+
9
+ [tool.hatch.build.targets.wheel]
10
+ packages = ["src/contextd"]
File without changes