From 8f4d4838533a0009e0c78832007dc03d9e0a5a86 Mon Sep 17 00:00:00 2001 From: Maarten Huijsmans Date: Tue, 24 Dec 2024 23:27:29 +0000 Subject: [PATCH] Add MIT License --- LICENSE | 21 +++++++++++++++++++++ pyproject.toml | 25 +++++++++++++++++++++++-- 2 files changed, 44 insertions(+), 2 deletions(-) create mode 100644 LICENSE diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..2bdc708 --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2024 Maarten Huijsmans. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index 480189e..0864bb1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,10 +2,31 @@ name = "zapman" version = "0.0.2" description = "An API Client for the terminal. A Python CLI for API testing and development." -authors = [] -license = "Proprietary" +authors = ["Maarten Huijsmans "] +license = "MIT" readme = "README.md" repository = "https://github.com/lukin0110/zapman/" +classifiers = [ + "Development Status :: 3 - Alpha", + "Environment :: Console", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3 :: Only", + "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", + "Intended Audience :: Developers", + "Intended Audience :: Information Technology", + "Intended Audience :: System Administrators", + "License :: OSI Approved :: MIT License", + "Operating System :: OS Independent", + "Topic :: Internet :: WWW/HTTP", + "Topic :: Software Development :: Libraries :: Python Modules", + "Topic :: Software Development :: Libraries", + "Topic :: Software Development :: Testing", + "Topic :: Utilities", + "Typing :: Typed", +] [build-system] # https://python-poetry.org/docs/pyproject/#poetry-and-pep-517 requires = ["poetry-core>=1.0.0"]