File size: 1,170 Bytes
39c930a 6fafd97 9e48792 39c930a 2ec677d 39c930a 51c40fe 353c774 51c40fe 2ec677d 51c40fe 39c930a 51c40fe 39c930a |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 |
from setuptools import find_packages, setup
with open("README.md", "r") as f:
long_description = f.read()
with open("requirements.txt", "r") as f:
requirements = f.read().splitlines()
setup(
name="aideml",
version="0.2.0",
author="Weco AI",
author_email="[email protected]",
description="Autonomous AI for Data Science and Machine Learning",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Wecoai/aideml",
packages=find_packages(),
package_data={
"aide": [
"../requirements.txt",
"utils/config.yaml",
"utils/viz_templates/*",
"example_tasks/bitcoin_price/*",
"example_tasks/house_prices/*",
"example_tasks/*",
]
},
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
],
python_requires=">=3.10",
install_requires=requirements,
entry_points={
"console_scripts": [
"aide = aide.run:run",
],
},
)
|