Dixing Xu commited on
Commit
5d0a6ee
·
unverified ·
1 Parent(s): 748ee28

fix: build error

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