2022.22.01.6

This commit is contained in:
ульба 2022-01-22 14:07:17 +05:00
parent 22b6615ede
commit ccf1f6e991
3 changed files with 16 additions and 3 deletions

2
pypi.sh Normal file
View File

@ -0,0 +1,2 @@
python setup.py sdist
twine upload dist/*

View File

@ -7,6 +7,12 @@
<img align="center" width="350" src="https://raw.githubusercontent.com/ulbwazhine/MockupEngineer/main/MockupModule/templates/iphone12promax/example.png" alt="Apple iPhone 12 Pro Max">
## Install
```
$ python -m pip install MockupEngineer
```
## Usage
In Python console:
@ -32,4 +38,5 @@ $ python -m MockupModule
## Links
* [Author](https://t.me/ulbwa)
* [GitHub](https://github.com/ulbwazhine/MockupEngineer)
* [PyPI](https://pypi.org/project/MockupEngineer/)

View File

@ -1,16 +1,20 @@
import os
from setuptools import setup
path = os.path.dirname(os.path.abspath(__file__))
setup(
name='MockupEngineer',
version='2022.22.01.4',
version='2022.22.01.6',
packages=['MockupModule', 'MockupModule.templates'],
url='https://github.com/ulbwazhine/MockupEngineer',
license='MIT',
author='Ulbwazhine',
author_email='ulbwa@icloud.com',
description='An simple library for creating beautiful screenshots.',
install_requires=open('./requirements.txt', 'r').readlines(),
long_description=open('./readme.md', 'r').read(),
install_requires=open('{}/requirements.txt'.format(path), 'r').readlines(),
long_description=open('{}/readme.md'.format(path), 'r').read(),
long_description_content_type='text/markdown'
)