File size: 495 Bytes
b7258ac 4998b48 b7258ac |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
from setuptools import setup, find_packages
setup(
name="lamassu",
version="0.0.12",
description="Empowering individual to agnostically run machine learning algorithms to produce ad-hoc AI features",
url="https://github.com/QubitPi/lamassu",
author="Jiaqi liu",
author_email="[email protected]",
license="Apache-2.0",
packages=find_packages(),
python_requires='>=3.10',
install_requires=[
],
zip_safe=False,
include_package_data=True
)
|