-
Notifications
You must be signed in to change notification settings - Fork 54
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (19 loc) · 746 Bytes
/
setup.py
File metadata and controls
21 lines (19 loc) · 746 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import os
from setuptools import setup, find_packages
ROOT = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(ROOT, 'README.md'), encoding="utf-8") as f:
long_description = f.read()
setup(
name='adapt',
version='0.4.5',
description='Awesome Domain Adaptation Python Toolbox for Tensorflow and Scikit-learn',
url='https://github.com/adapt-python/adapt.git',
author='Antoine de Mathelin',
author_email='antoine.demat@gmail.com',
license='BSD-2',
packages=find_packages(exclude=["tests"]),
install_requires=["numpy", "scipy", "tensorflow", "scikit-learn", "cvxopt", "scikeras"],
zip_safe=False,
long_description=long_description,
long_description_content_type='text/markdown'
)