1
0
Fork 0
mirror of https://github.com/shouptech/synthale.git synced 2026-02-03 15:39:45 +00:00
synthale/setup.py
Mike Shoup e14ac0249c Require pybeerxml >= 1.0.6
This release of pybeerxml contains the color function for a recipe.
2018-12-27 15:28:54 -07:00

42 lines
1.2 KiB
Python

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',
],
)