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:
Eli Ribble 2023-11-02 21:18:57 -06:00
parent 9e54895af4
commit 2988a08109
8 changed files with 73 additions and 0 deletions

15
LICENSE.txt Normal file
View File

@ -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
gongor/__init__.py Normal file
View File

View File

@ -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".

View File

@ -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

View File

@ -0,0 +1 @@

View File

@ -0,0 +1 @@

14
pyproject.toml Normal file
View File

@ -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"]

5
setup.py Normal file
View File

@ -0,0 +1,5 @@
#!/usr/bin/env python3
import setuptools
if __name__ == "__main__":
setuptools.setup()