Skip to content

Instantly share code, notes, and snippets.

@arthur-tacca
Last active July 14, 2020 09:14
Show Gist options
  • Save arthur-tacca/62bf9510c171722201da87a5373d3098 to your computer and use it in GitHub Desktop.
Save arthur-tacca/62bf9510c171722201da87a5373d3098 to your computer and use it in GitHub Desktop.
setup.py for caffe
#!/usr/bin/env python
from setuptools import setup
setup(
name="caffe",
version='1.0rc3',
url='https://github.com/BVLC/caffe',
license='BSD',
description=('Caffe is a deep learning framework made with expression, '
'speed, and modularity in mind.'),
author='BVLC members and the open-source community',
packages=["caffe", "caffe.proto"],
package_data={"caffe": ["imagenet/*.npy", "_caffe.so"]},
scripts=["classify.py", "detect.py", "draw_net.py"],
zip_safe=False,
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment