Skip to content

Instantly share code, notes, and snippets.

@gglin001
Forked from arthur-tacca/setup.py
Created July 14, 2020 09:14
Show Gist options
  • Save gglin001/c4db00a7fe2e8879f99d4fe43d69e4c8 to your computer and use it in GitHub Desktop.
Save gglin001/c4db00a7fe2e8879f99d4fe43d69e4c8 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