-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
First working version of component Detector with ipython notebook example included
- Loading branch information
1 parent
d932eac
commit 6818557
Showing
8 changed files
with
70 additions
and
48 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
README.md filter=lfs diff=lfs merge=lfs -text | ||
__init__.py filter=lfs diff=lfs merge=lfs -text | ||
*.caffemodel filter=lfs diff=lfs merge=lfs -text |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
recursive-include detector/models | ||
recursive-include detector/models *.* |
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
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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
#from distutils.core import setup | ||
from setuptools import setup, find_packages | ||
from distutils.core import setup | ||
#from setuptools import setup, find_packages | ||
import os | ||
|
||
datadir = 'models' | ||
datadir = 'detector/models' | ||
datafiles = [(d, [os.path.join(d,f) for f in files]) | ||
for d, folders, files in os.walk(datadir)] | ||
|
||
|
@@ -15,9 +15,10 @@ | |
version='0.1dev0', | ||
author='Gayathri Mahalingam, Kevin Marshall Gay', | ||
author_email='[email protected]', | ||
packages=find_packages(), | ||
package_data={'detector':datafiles}, | ||
packages=['detector'], | ||
package_data={'detector':['models/ic/*', 'models/resistor/*', 'models/capacitor/*']}, | ||
include_package_data=True, | ||
data_files=datafiles, | ||
install_requires=required, | ||
setup_requires=[], | ||
tests_require=[], | ||
|