diff options
| author | Cody Logan <clpo13@gmail.com> | 2020-01-07 16:28:01 -0800 |
|---|---|---|
| committer | Cody Logan <clpo13@gmail.com> | 2020-01-07 16:28:01 -0800 |
| commit | c77d4fc27a7235f206e2ae771c47a57d6cc18df4 (patch) | |
| tree | a113121533acd7cd0697760f1282a3df4f232be6 /pyproject.toml | |
| download | alphanum-0.1.0.tar.gz alphanum-0.1.0.zip | |
Initial commitv0.1.0
Diffstat (limited to 'pyproject.toml')
| -rw-r--r-- | pyproject.toml | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..ff68c34 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,15 @@ +[tool.poetry] +name = "alphanum" +version = "0.1.0" +description = "Generates random alphanumeric strings." +authors = ["Cody Logan <clpo13@gmail.com>"] + +[tool.poetry.dependencies] +python = "^3.6" + +[tool.poetry.dev-dependencies] +pytest = "^5.2" + +[build-system] +requires = ["poetry>=0.12"] +build-backend = "poetry.masonry.api" |
