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-02-02 17:52:19 +03:00
|
|
|
version='2022.02.02.3',
|
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-25 13:41:02 +03:00
|
|
|
description='A 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
|
|
|
)
|