commit cd7000d955f93510f237afdf84b22bd63b61036b Author: Firepup Sixfifty Date: Tue Nov 16 19:36:12 2021 +0000 Initial commit diff --git a/package/LICENSE b/package/LICENSE new file mode 100644 index 0000000..fef844e --- /dev/null +++ b/package/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2021 Alexander Maples + +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/package/README.md b/package/README.md new file mode 100644 index 0000000..e69de29 diff --git a/package/pyproject.toml b/package/pyproject.toml new file mode 100644 index 0000000..b5a3c46 --- /dev/null +++ b/package/pyproject.toml @@ -0,0 +1,6 @@ +[build-system] +requires = [ + "setuptools>=42", + "wheel" +] +build-backend = "setuptools.build_meta" \ No newline at end of file diff --git a/package/setup.cfg b/package/setup.cfg new file mode 100644 index 0000000..4402857 --- /dev/null +++ b/package/setup.cfg @@ -0,0 +1,25 @@ +[metadata] +name = fkeycapture-ALEXANDERMAPLES +version = 0.0.1 +author = ALEXANDERMAPLES +author_email = firepyp650@gmail.com +description = A way to capture keystrokes +long_description = file: README.md +long_description_content_type = text/markdown +url = https://github.com/pypa/sampleproject +project_urls = + Bug Tracker = https://github.com/pypa/sampleproject/issues + Main = https://replit.com/@ALEXANDERMAPLES/fkeycapture +classifiers = + Programming Language :: Python :: 3 + License :: OSI Approved :: MIT License + Operating System :: OS Independent + +[options] +package_dir = + = src +packages = find: +python_requires = >=3.6 + +[options.packages.find] +where = src \ No newline at end of file