recipe-box-for-wikijs/setup.py

45 lines
1.1 KiB
Python
Raw Normal View History

2020-06-27 14:03:56 -05:00
from setuptools import setup
2020-06-27 14:27:46 -05:00
"""
python3 setup.py sdist bdist_wheel
python3 -m twine upload dist/*
https://packaging.python.org/tutorials/packaging-projects/
"""
2020-06-27 14:03:56 -05:00
def readme():
with open('README.md') as f:
return f.read()
setup(
name='recipe_box',
2020-06-28 04:07:21 -05:00
version='0.1.2',
2020-06-27 14:03:56 -05:00
py_modules=['recipe_box'],
description='Utility to scrape recipes and put it in a local Zettelkasten.',
long_description=readme(),
long_description_content_type='text/markdown',
# https://pypi.org/classifiers/
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Topic :: Utilities',
],
keywords='utility recipe scraper zettelkasten',
url='http://github.com/lcordier/recipe_box/',
author='Louis Cordier',
author_email='lcordier@gmail.com',
license='MIT',
install_requires=[
'recipe-scrapers',
],
entry_points={
'console_scripts': [
'recipe_box=recipe_box:main',
],
},
)