Add initial package files.
With this I can `pip install -e .`. It doesn't _do_ anything, but I can do it.
This commit is contained in:
parent
9e54895af4
commit
2988a08109
|
@ -0,0 +1,15 @@
|
||||||
|
Gongor - A system for managing personal cryptographic identity
|
||||||
|
Copyright (C) 2023 Eli Ribble
|
||||||
|
|
||||||
|
This program is free software: you can redistribute it and/or modify
|
||||||
|
it under the terms of the GNU Affero General Public License as
|
||||||
|
published by the Free Software Foundation, either version 3 of the
|
||||||
|
License, or (at your option) any later version.
|
||||||
|
|
||||||
|
This program is distributed in the hope that it will be useful,
|
||||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
GNU Affero General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU Affero General Public License
|
||||||
|
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
@ -0,0 +1,29 @@
|
||||||
|
Metadata-Version: 2.1
|
||||||
|
Name: gongor
|
||||||
|
Version: 0.1
|
||||||
|
Summary: A system to manage Aegi
|
||||||
|
License: Gongor - A system for managing personal cryptographic identity
|
||||||
|
Copyright (C) 2023 Eli Ribble
|
||||||
|
|
||||||
|
This program is free software: you can redistribute it and/or modify
|
||||||
|
it under the terms of the GNU Affero General Public License as
|
||||||
|
published by the Free Software Foundation, either version 3 of the
|
||||||
|
License, or (at your option) any later version.
|
||||||
|
|
||||||
|
This program is distributed in the hope that it will be useful,
|
||||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
GNU Affero General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU Affero General Public License
|
||||||
|
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
Requires-Python: >=3.7
|
||||||
|
Description-Content-Type: text/markdown
|
||||||
|
License-File: LICENSE.txt
|
||||||
|
|
||||||
|
# Gongor
|
||||||
|
|
||||||
|
Project for managing an Aegis
|
||||||
|
|
||||||
|
Anagram of "Gorgon".
|
|
@ -0,0 +1,8 @@
|
||||||
|
LICENSE.txt
|
||||||
|
README.md
|
||||||
|
pyproject.toml
|
||||||
|
setup.py
|
||||||
|
gongor/gongor.egg-info/PKG-INFO
|
||||||
|
gongor/gongor.egg-info/SOURCES.txt
|
||||||
|
gongor/gongor.egg-info/dependency_links.txt
|
||||||
|
gongor/gongor.egg-info/top_level.txt
|
|
@ -0,0 +1 @@
|
||||||
|
|
|
@ -0,0 +1 @@
|
||||||
|
|
|
@ -0,0 +1,14 @@
|
||||||
|
[project]
|
||||||
|
name = "gongor"
|
||||||
|
version = "0.1"
|
||||||
|
description = "A system to manage Aegi"
|
||||||
|
readme = "README.md"
|
||||||
|
requires-python = ">=3.7"
|
||||||
|
license = {file = "LICENSE.txt"}
|
||||||
|
|
||||||
|
[build-system]
|
||||||
|
requires = ["setuptools >= 61.0.0"]
|
||||||
|
build-backend = "setuptools.build_meta"
|
||||||
|
|
||||||
|
[tool.setuptools.packages.find]
|
||||||
|
where = ["gongor"]
|
Loading…
Reference in New Issue