forked from alteryx/evalml
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (24 loc) · 1.06 KB
/
setup.py
File metadata and controls
26 lines (24 loc) · 1.06 KB
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
from setuptools import find_packages, setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='evalml',
version='0.20.0',
author='Alteryx, Inc.',
author_email='support@featurelabs.com',
description='EvalML is an AutoML library that builds, optimizes, and evaluates machine learning pipelines using domain-specific objective functions.',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/alteryx/evalml/',
install_requires=open('core-requirements.txt').readlines() + open('requirements.txt').readlines()[1:],
tests_require=open('test-requirements.txt').readlines(),
packages=find_packages(),
include_package_data=True,
entry_points={
'console_scripts': [
'evalml = evalml.__main__:cli'
]
},
data_files=[('evalml/demos/data', ['evalml/demos/data/fraud_transactions.csv.tar.gz', 'evalml/demos/data/churn.csv']),
('evalml/tests/data', ['evalml/tests/data/tips.csv', 'evalml/tests/data/titanic.csv'])],
)