2022-01-22 12:07:17 +03:00
|
|
|
import os
|
|
|
|
|
2022-01-22 11:00:56 +03:00
|
|
|
from setuptools import setup
|
|
|
|
|
2022-01-22 12:07:17 +03:00
|
|
|
path = os.path.dirname(os.path.abspath(__file__))
|
|
|
|
|
2022-01-22 11:26:39 +03:00
|
|
|
|
2022-01-22 11:00:56 +03:00
|
|
|
setup(
|
|
|
|
name='MockupEngineer',
|
2022-01-22 12:07:17 +03:00
|
|
|
version='2022.22.01.6',
|
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 12:07:17 +03:00
|
|
|
install_requires=open('{}/requirements.txt'.format(path), 'r').readlines(),
|
|
|
|
long_description=open('{}/readme.md'.format(path), 'r').read(),
|
2022-01-22 11:58:42 +03:00
|
|
|
long_description_content_type='text/markdown'
|
2022-01-22 11:00:56 +03:00
|
|
|
)
|