From 78d8f5b72b00d66d6ce60bc6cb8265cd5bd546ed Mon Sep 17 00:00:00 2001 From: Stefano Pigozzi Date: Mon, 14 Sep 2020 00:58:40 +0200 Subject: [PATCH] =?UTF-8?q?1=EF=B8=8F=E2=83=A3=20First=204.0=20commit?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 1 + .idea/inspectionProfiles/Project_Default.xml | 51 ++++++++++++++++++ .../inspectionProfiles/profiles_settings.xml | 6 +++ .idea/misc.xml | 4 ++ .idea/modules.xml | 8 +++ .idea/royalspells.iml | 13 +++++ .idea/vcs.xml | 6 +++ .idea/workspace.xml | 53 +++++++++++++++++++ poetry.lock | 8 +++ pyproject.toml | 15 ++++++ royalspells/__init__.py | 0 11 files changed, 165 insertions(+) create mode 100644 .gitignore create mode 100644 .idea/inspectionProfiles/Project_Default.xml create mode 100644 .idea/inspectionProfiles/profiles_settings.xml create mode 100644 .idea/misc.xml create mode 100644 .idea/modules.xml create mode 100644 .idea/royalspells.iml create mode 100644 .idea/vcs.xml create mode 100644 .idea/workspace.xml create mode 100644 poetry.lock create mode 100644 pyproject.toml create mode 100644 royalspells/__init__.py diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..3feb78a --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +*.egg-info/ diff --git a/.idea/inspectionProfiles/Project_Default.xml b/.idea/inspectionProfiles/Project_Default.xml new file mode 100644 index 0000000..ef9d2fe --- /dev/null +++ b/.idea/inspectionProfiles/Project_Default.xml @@ -0,0 +1,51 @@ + + + + \ No newline at end of file diff --git a/.idea/inspectionProfiles/profiles_settings.xml b/.idea/inspectionProfiles/profiles_settings.xml new file mode 100644 index 0000000..105ce2d --- /dev/null +++ b/.idea/inspectionProfiles/profiles_settings.xml @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..d1e22ec --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..1f1c30f --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/royalspells.iml b/.idea/royalspells.iml new file mode 100644 index 0000000..f8d69db --- /dev/null +++ b/.idea/royalspells.iml @@ -0,0 +1,13 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..94a25f7 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/.idea/workspace.xml b/.idea/workspace.xml new file mode 100644 index 0000000..5c10968 --- /dev/null +++ b/.idea/workspace.xml @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + 1600037431143 + + + + + + + + + \ No newline at end of file diff --git a/poetry.lock b/poetry.lock new file mode 100644 index 0000000..81197b5 --- /dev/null +++ b/poetry.lock @@ -0,0 +1,8 @@ +package = [] + +[metadata] +lock-version = "1.0" +python-versions = "^3.8" +content-hash = "fafb334cb038533f851c23d0b63254223abf72ce4f02987e7064b0c95566699a" + +[metadata.files] diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..bf2651b --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,15 @@ +[tool.poetry] +name = "royalspells" +version = "4.0.0" +description = "A package for a mini-procedurally-generated-RPG based on names" +authors = ["Stefano Pigozzi "] +license = "AGPL-3.0-or-later" + +[tool.poetry.dependencies] +python = "^3.8" + +[tool.poetry.dev-dependencies] + +[build-system] +requires = ["poetry>=0.12"] +build-backend = "poetry.masonry.api" diff --git a/royalspells/__init__.py b/royalspells/__init__.py new file mode 100644 index 0000000..e69de29