forked from Vladkryvoruchko/PSPNet-Keras-tensorflow
-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
22 lines (18 loc) · 935 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/usr/bin/python
"""Setup script for a Keras/Tensorflow implementation of Pyramid Scene Parsing Networks."""
from setuptools import setup
config = {
'name': 'pspnet',
'description': 'A Keras implementation of Pyramid Scene Parsing Networks',
'author': 'Vlad Kryvoruchko, Chaoyue Wang, Jeffrey Hu & Julian Tatsch',
'url': 'https://github.com/jmtatsch/PSPNet-Keras-tensorflow',
'author_email': '[email protected]',
'version': '0.1',
'dependency_links': ["https://github.com/jmtatsch/cityscapesScripts/tarball/master#egg=cityscapesscripts-0.1"],
'install_requires': ['numpy', 'scipy', 'pillow', 'matplotlib', 'keras', 'tensorflow-gpu',
'h5py', 'requests', 'cityscapesscripts'],
'packages': ['pspnet'],
'package_data': {'pspnet': ['example_images/*.*', 'example_results/*.*']},
'entry_points': {'console_scripts': ['pspnet = pspnet.pspnet:main']},
}
setup(**config)