mirror of
https://github.com/shouptech/synthale.git
synced 2026-02-03 15:39:45 +00:00
42 lines
1.2 KiB
Python
42 lines
1.2 KiB
Python
from setuptools import find_packages, setup
|
|
|
|
install_requires = [
|
|
'Click',
|
|
'pybeerxml',
|
|
]
|
|
|
|
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:cli
|
|
''',
|
|
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',
|
|
],
|
|
)
|