forked from xmartlabs/caffeflow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·46 lines (44 loc) · 1.55 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
41
42
43
44
45
46
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
import pypandoc
setup(
name="caffeflow",
version="0.1.1",
description="Utility to convert Caffe models to TensorFlow.",
long_description=pypandoc.convert('README.md', 'rst'),
url="https://github.com/xmartlabs/caffeflow",
keywords=["Caffe", "machine learning", "artificial intelligence", "model", "utility", "TensorFlow"],
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
],
packages=find_packages(),
entry_points={
'console_scripts': [
'caffeflow = caffeflow.convert:main',
],
},
install_requires=[
'tensorflow>=1.2.0',
],
author="Xmartlabs",
author_email="[email protected]",
maintainer="Santiago Castro",
maintainer_email="[email protected]",
license="MIT",
)