Commit 80367b9c by Vik Paruchuri

Update gitignore

parent 52120fed
...@@ -5,3 +5,8 @@ models/ ...@@ -5,3 +5,8 @@ models/
*~ *~
tests/ tests/
_build/ _build/
build/
dist/
machine_learning.egg-info/
*.egg
...@@ -11,7 +11,7 @@ import numpy ...@@ -11,7 +11,7 @@ import numpy
#Define base path and add to sys path #Define base path and add to sys path
base_path = os.path.dirname(__file__) base_path = os.path.dirname(__file__)
sys.path.append(base_path) sys.path.append(base_path)
one_up_path = os.path.abspath(os.path.join(os.path.dirname(__file__),'..')) one_up_path = os.path.abspath(os.path.join(os.path.dirname(__file__), '..//'))
sys.path.append(one_up_path) sys.path.append(one_up_path)
#Import modules that are dependent on the base path #Import modules that are dependent on the base path
......
...@@ -6,7 +6,7 @@ with open('requirements.txt') as f: ...@@ -6,7 +6,7 @@ with open('requirements.txt') as f:
setup( setup(
name = "machine-learning", name = "machine-learning",
version = "0.1", version = "0.1",
packages = find_packages(), packages=['machine_learning', 'machine_learning.external_code', 'machine_learning.data', 'machine_learning.external_code.fisher'],
package_data = { package_data = {
'': ['*.txt', '*.rst', '*.p'], '': ['*.txt', '*.rst', '*.p'],
}, },
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment