ganek 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.
- ganek-0.0.1/.gitignore +8 -0
- ganek-0.0.1/PKG-INFO +22 -0
- ganek-0.0.1/README.md +10 -0
- ganek-0.0.1/pyproject.toml +22 -0
- ganek-0.0.1/src/ganek/__init__.py +8 -0
ganek-0.0.1/.gitignore
ADDED
ganek-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
Metadata-Version: 2.5
|
|
2
|
+
Name: ganek
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Ganek - open-source careers page with built-in skill screening. Name reserved by the maintainers; real releases follow the v0.1.0 launch.
|
|
5
|
+
Project-URL: Homepage, https://ganek.io
|
|
6
|
+
Project-URL: Source, https://github.com/Ganek-dev/ganek
|
|
7
|
+
Author: Nestor Code Crafters UG (haftungsbeschraenkt)
|
|
8
|
+
License-Expression: AGPL-3.0-only
|
|
9
|
+
Classifier: Development Status :: 1 - Planning
|
|
10
|
+
Requires-Python: >=3.9
|
|
11
|
+
Description-Content-Type: text/markdown
|
|
12
|
+
|
|
13
|
+
# ganek
|
|
14
|
+
|
|
15
|
+
This name is reserved by the maintainers of [Ganek](https://ganek.io), an
|
|
16
|
+
open-source careers page platform with built-in skill screening (AGPL-3.0).
|
|
17
|
+
|
|
18
|
+
This is a placeholder release - real packages will follow the project's
|
|
19
|
+
v0.1.0 open-source launch. Source: https://github.com/Ganek-dev/ganek
|
|
20
|
+
|
|
21
|
+
If you want to get notified at launch, join the waitlist at
|
|
22
|
+
https://ganek.io.
|
ganek-0.0.1/README.md
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
# ganek
|
|
2
|
+
|
|
3
|
+
This name is reserved by the maintainers of [Ganek](https://ganek.io), an
|
|
4
|
+
open-source careers page platform with built-in skill screening (AGPL-3.0).
|
|
5
|
+
|
|
6
|
+
This is a placeholder release - real packages will follow the project's
|
|
7
|
+
v0.1.0 open-source launch. Source: https://github.com/Ganek-dev/ganek
|
|
8
|
+
|
|
9
|
+
If you want to get notified at launch, join the waitlist at
|
|
10
|
+
https://ganek.io.
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "ganek"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "Ganek - open-source careers page with built-in skill screening. Name reserved by the maintainers; real releases follow the v0.1.0 launch."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.9"
|
|
11
|
+
license = "AGPL-3.0-only"
|
|
12
|
+
authors = [{ name = "Nestor Code Crafters UG (haftungsbeschraenkt)" }]
|
|
13
|
+
classifiers = [
|
|
14
|
+
"Development Status :: 1 - Planning",
|
|
15
|
+
]
|
|
16
|
+
|
|
17
|
+
[project.urls]
|
|
18
|
+
Homepage = "https://ganek.io"
|
|
19
|
+
Source = "https://github.com/Ganek-dev/ganek"
|
|
20
|
+
|
|
21
|
+
[tool.hatch.build.targets.wheel]
|
|
22
|
+
packages = ["src/ganek"]
|