forked from michalfaber/tf_netbuilder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (32 loc) · 1.29 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
from setuptools import setup, find_packages
exec(open('tf_netbuilder/version.py').read())
setup(
name='tf_netbuilder',
version='1.0',
description='Library for creating deep learning architectures using string notation for Tensorflow 2.0',
author='Michal Faber',
author_email='[email protected]',
url='https://github.com/michalfaber/tf_netbuilder',
packages=find_packages(exclude=['examples', 'resources']),
install_requires=['tensorflow-gpu >= 2.2.1'],
python_requires='>=3.6',
classifiers=[
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
'Development Status :: 3 - Alpha',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
],
keywords='tensorflow netbuilder openpose mobilenet',
)