Last active
July 14, 2020 09:14
-
-
Save arthur-tacca/62bf9510c171722201da87a5373d3098 to your computer and use it in GitHub Desktop.
setup.py for caffe
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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