This repository was archived by the owner on Aug 25, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 135
Expand file tree
/
Copy pathsetup.py
More file actions
92 lines (89 loc) · 3.06 KB
/
setup.py
File metadata and controls
92 lines (89 loc) · 3.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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
# SPDX-License-Identifier: MIT
# Copyright (c) 2019 Intel Corporation
import ast
from io import open
from setuptools import find_packages, setup
with open('dffml/version.py', 'r') as f:
for line in f:
if line.startswith('VERSION'):
version = ast.literal_eval(line.strip().split('=')[-1].strip())
break
with open('README.md', 'r', encoding='utf-8') as f:
readme = f.read()
setup(
name='dffml',
version=version,
description='Data Flow Facilitator for Machine Learning',
long_description=readme,
long_description_content_type='text/markdown',
author='John Andersen',
author_email='john.s.andersen@intel.com',
maintainer='John Andersen',
maintainer_email='john.s.andersen@intel.com',
url='https://github.com/intel/dffml',
license='MIT',
keywords=[
'',
],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
],
packages=find_packages(),
extras_require={
'tensorflow': ['dffml-model-tensorflow'],
'git': ['dffml-feature-git'],
},
entry_points={
'console_scripts': [
'dffml = dffml.cli:CLI.main',
],
'dffml.source': [
'csv = dffml.source.csv:CSVSource',
'json = dffml.source.json:JSONSource',
'memory = dffml.source.memory:MemorySource',
],
'dffml.port': [
'json = dffml.port.json:JSON',
],
# Data Flow
'dffml.operation': [
'group_by = dffml.operation.output:GroupBy.op',
'get_single = dffml.operation.output:GetSingle.op',
'associate = dffml.operation.output:Associate.op',
],
'dffml.operation.implementation': [
'group_by = dffml.operation.output:GroupBy.imp',
'get_single = dffml.operation.output:GetSingle.imp',
'associate = dffml.operation.output:Associate.imp',
],
'dffml.kvstore': [
'memory = dffml.df.memory:MemoryKeyValueStore',
],
'dffml.input.network': [
'memory = dffml.df.memory:MemoryInputNetwork',
],
'dffml.operation.network': [
'memory = dffml.df.memory:MemoryOperationNetwork',
],
'dffml.redundancy.checker': [
'memory = dffml.df.memory:MemoryRedundancyChecker',
],
'dffml.lock.network': [
'memory = dffml.df.memory:MemoryLockNetwork',
],
'dffml.operation.implementation.network': [
'memory = dffml.df.memory:MemoryOperationImplementationNetwork',
],
'dffml.orchestrator': [
'memory = dffml.df.memory:MemoryOrchestrator',
],
},
)