14 lines
341 B
Python
14 lines
341 B
Python
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name="aiunn",
|
|
version="0.1.1",
|
|
packages=find_packages(where="src"),
|
|
package_dir={"": "src"},
|
|
install_requires=[
|
|
line.strip()
|
|
for line in open("requirements.txt")
|
|
if line.strip() and not line.startswith("#")
|
|
],
|
|
python_requires=">=3.10",
|
|
) |