MockupEngineer/setup.py

18 lines
570 B
Python
Raw Normal View History

2022-01-23 10:35:05 +03:00
from setuptools import setup, find_packages
2022-01-22 11:00:56 +03:00
2022-01-22 11:26:39 +03:00
2022-01-22 11:00:56 +03:00
setup(
name='MockupEngineer',
2022-01-23 17:21:36 +03:00
version='2022.01.23.19',
2022-01-23 10:55:34 +03:00
packages=find_packages(),
2022-01-22 11:00:56 +03:00
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
)