-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (27 loc) · 836 Bytes
/
setup.py
File metadata and controls
29 lines (27 loc) · 836 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
28
29
from setuptools import setup
readme = open('README.rst').read()
setup(name='dtoolai',
version='0.2.0',
description='Reproducible Deep Learning tools and examples',
long_description=readme,
long_description_content_type='text/x-rst',
url='http://github.com/JIC-CSB/dtoolai',
author='Matthew Hartley',
author_email='Matthew.Hartley@jic.ac.uk',
license='MIT',
install_requires=[
'dtoolcore',
'dtool-http',
'click',
'pillow',
'torch',
'torchvision',
],
packages=['dtoolai'],
entry_points={
'console_scripts': [
'dtoolai-provenance = dtoolai.utils:print_provenance',
'create-image-dataset-from-dirtree = dtoolai.utils:image_dataset_from_dirtree_cli'
]
},
zip_safe=False)