-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
50 lines (50 loc) · 1.11 KB
/
setup.py
File metadata and controls
50 lines (50 loc) · 1.11 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
from distutils.core import setup
setup(
name = 'tfbox',
packages=[
'tfbox',
'tfbox.callbacks',
'tfbox.loaders',
'tfbox.losses',
'tfbox.metrics',
'tfbox.nn',
'tfbox.utils'
],
package_dir = {
'tfbox': 'tfbox',
'tfbox.callbacks': 'tfbox/callbacks',
'tfbox.loaders': 'tfbox/loaders',
'tfbox.losses': 'tfbox/losses',
'tfbox.metrics': 'tfbox/metrics',
'tfbox.nn': 'tfbox/nn',
'tfbox.utils': 'tfbox/utils'
},
version = '0.0.0.95',
description = 'tfbox: a collection of models and tools for tensorflow',
author = 'Brookie Guzder-Williams',
author_email = 'brook.williams@gmail.com',
url = 'https://github.com/brookisme/tfbox',
download_url = 'https://github.com/brookisme/tfbox/tarball/0.1',
keywords = ['python','tensorflow','model'],
include_package_data=False,
package_data={
'tfbox.nn': ['configs/*.yaml']
},
data_files=[
(
'config',[]
)
],
install_requires=[
'numpy',
'pandas',
'pyyaml',
'matplotlib',
'imagebox>=0.0.0.18'
],
classifiers = [],
entry_points={
'console_scripts': [
]
}
)