forked from IBM/lale-gpl
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
50 lines (47 loc) · 1.58 KB
/
Copy pathsetup.py
File metadata and controls
50 lines (47 loc) · 1.58 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# Copyright 2019 IBM Corporation
#
# Licensed under the GNU General Public License 3.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.gnu.org/licenses/gpl-3.0.txt
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
from setuptools import setup, find_packages
import os
import sys
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='lalegpl',
version='0.1.0',
author="Avraham Shinnar, Guillaume Baudart, Kiran Kate, Martin Hirzel",
description="Language for Automated Learning Exploration",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.ibm.com/Lale/lale-gpl",
python_requires='>=3.6',
packages=find_packages(),
license='',
install_requires=[
'lale[full] @ git+https://git@github.com/IBM/lale.git@master#egg=lale[full]',
'javabridge>=1.0.18',
'python-weka-wrapper3>=0.1.7',
'rpy2>=3.0.2'
],
extras_require={
'test':[
'jupyter',
'mypy',
'flake8',
'numpydoc',
'sphinx',
'm2r',
'sphinx_rtd_theme'
]}
)