Techdocs / techdocs /setup.py
mayureshagashe2105's picture
API generation change
ae83ec3
raw
history blame
606 Bytes
import setuptools
from setuptools import setup
import glob
setup(
name='techdocs',
version='0.1.5',
# 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'
],
},
python_requires='>=3.10',
data_files=glob.glob('techdocs/signatures/**'),
include_package_data=True,
packages=setuptools.find_packages(),
)