mirror of
https://github.com/ulbwazhine/MockupEngineer.git
synced 2024-11-22 00:46:33 +03:00
2022.22.01.6
This commit is contained in:
parent
22b6615ede
commit
ccf1f6e991
|
@ -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/)
|
||||
|
||||
|
|
10
setup.py
10
setup.py
|
@ -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'
|
||||
)
|
||||
|
|
Loading…
Reference in New Issue
Block a user