File size: 606 Bytes
e2937e5
01df4b3
bf88ab3
01df4b3
 
 
aa7111b
01df4b3
 
 
 
 
 
bf88ab3
01df4b3
bf88ab3
 
 
 
 
e2937e5
 
01df4b3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import setuptools
from setuptools import setup
import glob

setup(
	name='techdocs',
	version='0.2.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'
        ],    
    },
    python_requires='>=3.10',


    data_files=glob.glob('techdocs/signatures/**'),
    include_package_data=True,

    packages=setuptools.find_packages(),
)