''' Perguntations setup ''' from setuptools import setup, find_packages from perguntations import (__author__, __license__, APP_NAME, APP_VERSION, APP_DESCRIPTION) with open('README.md', 'r') as f: long_description = f.read() setup( name=APP_NAME, version=APP_VERSION, author=__author__, author_email='mjsb@uevora.pt', license=__license__, description=APP_DESCRIPTION.split('\n')[0], long_description=APP_DESCRIPTION, long_description_content_type='text/markdown', url='https://git.xdi.uevora.pt/mjsb/perguntations.git', packages=find_packages(), include_package_data=True, # install files from MANIFEST.in python_requires='>=3.9', install_requires=[ 'argon2-cffi>=23.1', 'mistune<2.0', 'pyyaml>=5.1', 'pygments', 'schema>=0.7.5', 'sqlalchemy>=2.0', 'tornado>=6.4', ], entry_points={ 'console_scripts': [ 'perguntations = perguntations.main:main', 'initdb = perguntations.initdb:main', ] }, classifiers=[ 'Development Status :: 4 - Beta', 'Environment :: Console', 'Intended Audience :: Education', 'Programming Language :: Python :: 3', 'License :: OSI Approved :: MIT License', 'Operating System :: OS Independent', ], )