From a8bda2e374d01018281efa76b9cb891bc5178f6d Mon Sep 17 00:00:00 2001 From: Rdimo Date: Thu, 10 Mar 2022 15:34:48 +0100 Subject: [PATCH] import some bitches --- .gitignore | 4 ++++ LICENSE | 21 +++++++++++++++++++++ README.md | 23 +++++++++++++++++++++++ bitches/__init__.py | 1 + setup.py | 26 ++++++++++++++++++++++++++ 5 files changed, 75 insertions(+) create mode 100644 .gitignore create mode 100644 LICENSE create mode 100644 README.md create mode 100644 bitches/__init__.py create mode 100644 setup.py diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e8913a3 --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +__pycache__ +pylibcheck.egg-info +dist +build \ No newline at end of file diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..420306f --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2022 Rdimo + +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/README.md b/README.md new file mode 100644 index 0000000..88b57ab --- /dev/null +++ b/README.md @@ -0,0 +1,23 @@ +

+ + + + + +

+ +#### PyLibCheck was made by +Love ❌ code ✅ + +--- +### 🎈・Code example +Example of how you can use [pylibcheck](https://pypi.org/project/pylibcheck/) +```py +import pylibcheck, time + +if not pylibcheck.checkPackage("pyinstaller"): + print("pyinstaller is not installed!") + time.sleep(1) + print("installing it for you!") + pylibcheck.installPackage("pyinstaller") +``` diff --git a/bitches/__init__.py b/bitches/__init__.py new file mode 100644 index 0000000..ac84d6e --- /dev/null +++ b/bitches/__init__.py @@ -0,0 +1 @@ +#how about you import some bitches \ No newline at end of file diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..864490c --- /dev/null +++ b/setup.py @@ -0,0 +1,26 @@ +from setuptools import setup, find_packages + +__name__ = "bitches" +__version__ = "0.0.1" + +setup( + name=__name__, + version=__version__, + author="Rdimo", + author_email="", + description="how about you pip install some bitches", + long_description_content_type="text/markdown", + long_description=open("README.md", encoding="utf-8").read(), + url = "https://github.com/rdimo/bitches", + project_urls={ + "Bug Tracker": "https://github.com/rdimo/bitches/issues", + }, + packages=find_packages(), + keywords=['bitches', 'python', 'package', 'library', 'lib', 'module', 'checker'], + classifiers=[ + "Intended Audience :: Developers", + "Programming Language :: Python :: 3", + "License :: OSI Approved :: MIT License", + "Operating System :: OS Independent", + ] +) \ No newline at end of file