forked from WecoAI/aideml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
42 lines (39 loc) · 1.18 KB
/
setup.py
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.1.4",
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:main",
"aide-cli = aide.cli:cli",
],
},
)