mirror of
https://github.com/SinTan1729/recipe-box-for-wikijs.git
synced 2024-12-25 17:58:35 -06:00
Add setuptools build script.
This commit is contained in:
parent
062d13a300
commit
4736938ec2
1 changed files with 38 additions and 0 deletions
38
setup.py
Normal file
38
setup.py
Normal file
|
@ -0,0 +1,38 @@
|
|||
from setuptools import setup
|
||||
|
||||
|
||||
def readme():
|
||||
with open('README.md') as f:
|
||||
return f.read()
|
||||
|
||||
|
||||
setup(
|
||||
name='recipe_box',
|
||||
version='0.1.0',
|
||||
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',
|
||||
],
|
||||
},
|
||||
)
|
Loading…
Reference in a new issue