from setuptools import find_packages, setup install_requires = [ 'Click', 'pybeerxml>=1.0.6', ] setup( name='synthale', version='0.0.1', url='https://github.com/shouptech/synthale', author='Mike Shoup', author_email='mike@shoup.io', description='Synthale is a command line tool that convert BeerXML files ' 'into Markdown files.', package_dir={'': 'src'}, packages=find_packages(where='src'), install_requires=install_requires, setup_requires=install_requires + [ 'pytest-runner', ], tests_require=[ 'pytest', ], entry_points=''' [console_scripts] synthale=synthale.cli:main ''', classifiers=[ 'Development Status :: 2 - Pre-Alpha', 'Environment :: Console', 'License :: OSI Approved :: GNU General Public License v3 (GPLv3)', 'Natural Language :: English', 'Operating System :: OS Independent', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3 :: Only', 'Topic :: Internet :: WWW/HTTP', 'Topic :: Software Development :: Libraries :: Python Modules', ], )