This repository has been archived by the owner on Aug 31, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 145
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #16 from stasfilin/fix_styles
Update styles PEP8
Showing
4 changed files
with
51 additions
and
50 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
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,30 +1,30 @@ | ||
from distutils.core import setup | ||
|
||
#This is a list of files to install, and where | ||
#(relative to the 'root' dir, where setup.py is) | ||
#You could be more specific. | ||
# This is a list of files to install, and where | ||
# (relative to the 'root' dir, where setup.py is) | ||
# You could be more specific. | ||
files = [] | ||
|
||
setup(name = "pysparnn", | ||
version = "0.4", | ||
description = "Sparse (approximate) nearest neighbor search for python!", | ||
author = "Spencer Beecher", | ||
author_email = "[email protected]", | ||
#url = "", | ||
#Name the folder where your packages live: | ||
#(If you have other packages (dirs) or modules (py files) then | ||
#put them into the package directory - they will be found | ||
#recursively.) | ||
packages = ['pysparnn'], | ||
#'package' package must contain files (see list above) | ||
#I called the package 'package' thus cleverly confusing the whole issue... | ||
#This dict maps the package name =to=> directories | ||
#It says, package *needs* these files. | ||
#package_data = {}, | ||
#'runner' is in the root. | ||
#scripts = [], | ||
long_description = """Sparse (approximate) nearest neighbor search for python!""" | ||
# | ||
#This next part it for the Cheese Shop, look a little down the page. | ||
#classifiers = [] | ||
) | ||
setup(name="pysparnn", | ||
version="0.4", | ||
description="Sparse (approximate) nearest neighbor search for python!", | ||
author="Spencer Beecher", | ||
author_email="[email protected]", | ||
# url = "", | ||
# Name the folder where your packages live: | ||
# (If you have other packages (dirs) or modules (py files) then | ||
# put them into the package directory - they will be found | ||
# recursively.) | ||
packages=['pysparnn'], | ||
# 'package' package must contain files (see list above) | ||
# I called the package 'package' thus cleverly confusing the whole issue... | ||
# This dict maps the package name =to=> directories | ||
# It says, package *needs* these files. | ||
# package_data = {}, | ||
# 'runner' is in the root. | ||
# scripts = [], | ||
long_description="""Sparse (approximate) nearest neighbor search for python!""" | ||
# | ||
# This next part it for the Cheese Shop, look a little down the page. | ||
# classifiers = [] | ||
) |