import some bitches

This commit is contained in:
Rdimo
2022-03-10 15:34:48 +01:00
commit a8bda2e374
5 changed files with 75 additions and 0 deletions

4
.gitignore vendored Normal file
View File

@@ -0,0 +1,4 @@
__pycache__
pylibcheck.egg-info
dist
build

21
LICENSE Normal file
View File

@@ -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.

23
README.md Normal file
View File

@@ -0,0 +1,23 @@
<p align="center">
<img src="https://img.shields.io/pypi/v/PyLibCheck?style=flat-square" </a>
<img src="https://img.shields.io/pypi/l/PyLibCheck?style=flat-square" </a>
<img src="https://img.shields.io/pypi/dm/pylibcheck?style=flat-square" </a>
<img src="https://img.shields.io/github/stars/Rdimo/PyLibCheck?label=Stars&style=flat-square" </a>
<img src="https://img.shields.io/github/forks/Rdimo/PyLibCheck?label=Forks&style=flat-square" </a>
</p>
#### 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")
```

1
bitches/__init__.py Normal file
View File

@@ -0,0 +1 @@
#how about you import some bitches

26
setup.py Normal file
View File

@@ -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="<contact.rdimo@gmail.com>",
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",
]
)