File size: 398 Bytes
0e41b61 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | from setuptools import setup, find_packages
setup(
name="mac-tensor",
version="0.1.0",
packages=find_packages(),
package_data={
"mac_tensor": ["static/*.html", "static/*.css", "static/*.js"],
},
include_package_data=True,
entry_points={
"console_scripts": [
"mac-tensor=mac_tensor.cli:main",
],
},
python_requires=">=3.9",
)
|