diff --git a/.gitignore b/.gitignore index 5140cf3..8fab764 100644 --- a/.gitignore +++ b/.gitignore @@ -2,5 +2,6 @@ .envrc .pytest_cache __pycache__ +build cue_to_meta.egg-info venv diff --git a/Pipfile b/Pipfile new file mode 100644 index 0000000..e5a8d0b --- /dev/null +++ b/Pipfile @@ -0,0 +1,12 @@ +[[source]] +url = "https://pypi.org/simple" +verify_ssl = true +name = "pypi" + +[packages] +genpw = {editable = true, path = "."} + +[dev-packages] + +[requires] +python_version = "3.11" diff --git a/Pipfile.lock b/Pipfile.lock new file mode 100644 index 0000000..681425a --- /dev/null +++ b/Pipfile.lock @@ -0,0 +1,33 @@ +{ + "_meta": { + "hash": { + "sha256": "d7c2322ee01acc775c139131c69a8378bd5c99c4de25d8a32a8dde14a06bb7c2" + }, + "pipfile-spec": 6, + "requires": { + "python_version": "3.11" + }, + "sources": [ + { + "name": "pypi", + "url": "https://pypi.org/simple", + "verify_ssl": true + } + ] + }, + "default": { + "click": { + "hashes": [ + "sha256:ae74fb96c20a0277a1d615f1e4d73c8414f5a98db8b799a7931d1582f3390c28", + "sha256:ca9853ad459e787e2192211578cc907e7594e294c7ccc834310722b41b9ca6de" + ], + "markers": "python_version >= '3.7'", + "version": "==8.1.7" + }, + "cue-to-meta": { + "editable": true, + "path": "." + } + }, + "develop": {} +}