-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (24 loc) · 833 Bytes
/
setup.py
File metadata and controls
27 lines (24 loc) · 833 Bytes
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
import subprocess
from setuptools import setup, find_packages
# Get install requirements
with open('requirements.txt', 'r') as f:
install_requires = list()
dependency_links = list()
for line in f:
re = line.strip()
if re:
install_requires.append(re)
setup(name='ccfs-python',
version='0.2.0',
description='CCFs are a decision tree ensemble method for classification and regression',
author='UBC',
url='https://github.com/plai-group/ccfs-python.git',
maintainer_email='tonyjos@cs.ubc.ca',
maintainer='Tony Joseph',
license='Apache-2.0',
packages=find_packages(exclude=['datasets', 'dataset']),
zip_safe=False,
python_requires='>=3.6',
install_requires=install_requires,
keywords='canonical-correlation-forests'
)