mirror of
https://github.com/ulbwazhine/MockupEngineer.git
synced 2024-11-21 16:36:34 +03:00
2022.22.01.13
This commit is contained in:
parent
ccf1f6e991
commit
41edf450a5
2
MANIFEST.in
Normal file
2
MANIFEST.in
Normal file
|
@ -0,0 +1,2 @@
|
|||
include readme.md
|
||||
include requirements.txt
|
13
setup.py
13
setup.py
|
@ -1,20 +1,17 @@
|
|||
import os
|
||||
|
||||
from setuptools import setup
|
||||
|
||||
path = os.path.dirname(os.path.abspath(__file__))
|
||||
|
||||
|
||||
setup(
|
||||
name='MockupEngineer',
|
||||
version='2022.22.01.6',
|
||||
version='2022.22.01.13',
|
||||
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'.format(path), 'r').readlines(),
|
||||
long_description=open('{}/readme.md'.format(path), 'r').read(),
|
||||
long_description_content_type='text/markdown'
|
||||
install_requires=[line.strip() for line in open("requirements.txt").readlines()],
|
||||
long_description=open('readme.md', 'r').read(),
|
||||
long_description_content_type='text/markdown',
|
||||
include_package_data=True
|
||||
)
|
||||
|
|
Loading…
Reference in New Issue
Block a user