-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (36 loc) · 1.09 KB
/
setup.py
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
from setuptools import setup
def readme():
with open('README.rst') as f:
return f.read()
setup(name='eye2you',
version='0.1.dev1',
description='fundus image analysis',
long_description=readme(),
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Healthcare Industry',
'Intended Audience :: Science/Research',
'License :: Other/Proprietary License',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Scientific/Engineering :: Medical Science Apps.',
],
keywords='',
url='https://github.com/phillies/eye2you',
author='Philipp Lies',
author_email='[email protected]',
license='None',
packages=['eye2you'],
install_requires=[
'pandas',
'torch',
'torchvision',
'opencv-python',
'sklearn',
'tqdm',
'pyyaml',
'imageio',
],
include_package_data=True,
zip_safe=False,
setup_requires=['pytest-runner'],
tests_require=['pytest'])