Techdocs / setup.py
mayureshagashe2105's picture
Add packaging setup
e2937e5
raw
history blame
474 Bytes
import setuptools
from setuptools import setup
setup(
name='techdocs',
version='0.1.0',
# To provide executable scripts, use entry points in preference to the
# "scripts" keyword. Entry points provide cross-platform support and allow
# pip to create the appropriate form of executable for the target platform.
entry_points={
'console_scripts': [
'techdocs=techdocs.cli:main'
]
},
packages=setuptools.find_packages(),
)