-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (30 loc) · 1.25 KB
/
setup.py
File metadata and controls
32 lines (30 loc) · 1.25 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
from io import open
from setuptools import setup, find_packages
def readme():
with open('README.md', encoding='utf-8') as f:
return f.read()
setup(name='tensorcv',
version='0.3.0',
install_requires=['tensorflow>=2.0.0'],
description='tf.Keras implementations of a Deep Learning Toolkit for Computer Vision.',
long_description=readme(),
long_description_content_type='text/markdown',
url='https://github.com/Hourout/tensorcv',
author='JinQing Lee',
author_email='hourout@163.com',
keywords=['computer-vision', 'keras', 'tf.keras', 'deep-learning'],
license='Apache License Version 2.0',
classifiers=[
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Scientific/Engineering :: Visualization',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
packages=find_packages(),
zip_safe=False)