-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
33 lines (31 loc) · 1.17 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
# -*- coding: utf-8 -*-
from setuptools import setup
from setuptools import find_packages
long_description = '''
CBC networks in Keras.
'''
setup(name='keras_cbc',
version='0.1.0',
description='CBC networks in Keras.',
long_description=long_description,
author='Sascha Saralajew',
author_email='[email protected]',
url='https://github.com/saralajew/cbc_networks',
download_url='https://github.com/saralajew/cbc_networks.git',
license='BSD 3-Clause License',
install_requires=['keras>=2.2.4',
'opencv-python>=4.1',
'Pillow>=6.0.0'],
extras_require={
'imagenet': ['tensorflow-gpu>=1.12.0, ==1.*']},
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules'
],
packages=find_packages())