2022-01-22 11:00:56 +03:00
|
|
|
from setuptools import setup
|
|
|
|
|
2022-01-22 11:26:39 +03:00
|
|
|
try:
|
|
|
|
from pypandoc import convert
|
|
|
|
|
|
|
|
read_md = lambda f: convert(f, 'rst')
|
|
|
|
except ImportError:
|
|
|
|
read_md = lambda f: open(f, 'r').read()
|
|
|
|
|
2022-01-22 11:00:56 +03:00
|
|
|
setup(
|
|
|
|
name='MockupEngineer',
|
2022-01-22 11:42:24 +03:00
|
|
|
version='2022.22.01.3',
|
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(),
|
|
|
|
long_description=read_md('README.md')
|
2022-01-22 11:00:56 +03:00
|
|
|
)
|