MockupEngineer/setup.py

18 lines
582 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 13:06:56 +03:00
version='2022.22.01.13',
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.',
2022-01-22 13:06:56 +03:00
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
2022-01-22 11:00:56 +03:00
)