MockupEngineer/setup.py

17 lines
532 B
Python
Raw Normal View History

2022-01-22 11:00:56 +03:00
from setuptools import setup
2022-01-22 11:26:39 +03:00
2022-01-22 11:00:56 +03:00
setup(
name='MockupEngineer',
2022-01-22 11:58:42 +03:00
version='2022.22.01.4',
2022-01-22 11:00:56 +03:00
packages=['MockupModule', 'MockupModule.templates'],
url='https://github.com/ulbwazhine/MockupEngineer',
2022-01-22 11:26:39 +03:00
license='MIT',
author='Ulbwazhine',
2022-01-22 11:00:56 +03:00
author_email='ulbwa@icloud.com',
2022-01-22 11:26:39 +03:00
description='An simple library for creating beautiful screenshots.',
install_requires=open('./requirements.txt', 'r').readlines(),
2022-01-22 11:58:42 +03:00
long_description=open('./readme.md', 'r').read(),
long_description_content_type='text/markdown'
2022-01-22 11:00:56 +03:00
)