-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·33 lines (30 loc) · 1.27 KB
/
setup.py
File metadata and controls
executable file
·33 lines (30 loc) · 1.27 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
from setuptools import setup, find_packages
from byudml import __version__
from byudml import __imputer_path__
from byudml import __metafeature_path__
from byudml import __profiler_path__
setup(
name='byudml',
packages = find_packages(include=['byudml', 'byudml.*']),
version = __version__,
description = 'A collection of DARPA D3M primitives developed by BYU',
author = 'Roland Laboulaye, Brandom Schoenfeld, Jarom Christensen',
url = 'https://github.com/byu-dml/d3m-primitives',
license = 'MIT',
include_package_data=True,
keywords = ['metalearning', 'metafeature', 'machine learning', 'metalearn', 'd3m_primitive'],
install_requires = [
'd3m',
'metalearn==0.6.1',
'numpy<=1.18.2',
'pandas<=1.0.3',
'sentence-transformers<=0.3.0',
],
entry_points = {
'd3m.primitives': [
'{} = byudml.imputer.random_sampling_imputer:RandomSamplingImputer'.format(".".join(__imputer_path__.split(".")[2:])),
'{} = byudml.metafeature_extraction.metafeature_extraction:MetafeatureExtractor'.format(".".join(__metafeature_path__.split(".")[2:])),
'{} = byudml.profiler.profiler_primitive:SemanticProfilerPrimitive'.format(".".join(__profiler_path__.split(".")[2:])),
]
}
)