setup.py (1321B) - raw
1 from setuptools import find_packages, setup 2 # 3 4 with open("README.md", "r") as fh: 5 long_description = fh.read() 6 7 setup( 8 name="boxnotes2html", 9 version="0.1.4", 10 author="Alex Wennerberg", 11 author_email="alex@alexwennerberg.com", 12 description="Converting from Box Notes to HTML or other formats", 13 long_description=long_description, 14 long_description_content_type="text/markdown", 15 url="https://github.com/alexwennerberg/boxnotes2html", 16 packages=find_packages(), 17 install_requires=[], 18 setup_requires=["pytest-runner"], 19 tests_require=["pytest"], 20 include_package_data=True, 21 entry_points={ 22 "console_scripts": [ 23 "boxnotes2html=boxnotes2html.cli:run", 24 "boxnote2html=boxnotes2html.cli:run", 25 ] # alias because if you're like me you'll type it wrong 26 }, 27 classifiers=[ 28 # As from http://pypi.python.org/pypi?%3Aaction=list_classifiers 29 # 'Development Status :: 1 - Planning', 30 # 'Development Status :: 2 - Pre-Alpha', 31 "Development Status :: 3 - Alpha", 32 # 'Development Status :: 4 - Beta', 33 # 'Development Status :: 5 - Production/Stable', 34 # 'Development Status :: 6 - Mature', 35 # 'Development Status :: 7 - Inactive', 36 "Programming Language :: Python :: 3", 37 ], 38 )