-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added missing MANIFEST.in
- Loading branch information
Showing
10 changed files
with
25 additions
and
19 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
include LICENSE README.rst CHANGELOG.rst contributors.txt requirements.txt | ||
include data/point_cloud_example.txt | ||
include data/output_point_cloud.txt | ||
include data/test_gif/test.gif | ||
include data/batch/files.txt |
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 |
---|---|---|
|
@@ -19,14 +19,14 @@ | |
__copyright__ = "Copyright 2018-2019" | ||
__credits__ = ["Matheus Boni Vicari"] | ||
__license__ = "GPL3" | ||
__version__ = "1.0" | ||
__version__ = "1.0.1" | ||
__maintainer__ = "Matheus Boni Vicari" | ||
__email__ = "[email protected]" | ||
__status__ = "Development" | ||
|
||
|
||
__all__ = ['downsampling', 'shortpath'] | ||
|
||
import downsampling | ||
import shortpath | ||
from downsampling import downsample_cloud, upsample_cloud | ||
from shortpath import array_to_graph, extract_path_info | ||
|
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 |
---|---|---|
|
@@ -19,7 +19,7 @@ | |
__copyright__ = "Copyright 2018-2019" | ||
__credits__ = ["Matheus Boni Vicari"] | ||
__license__ = "GPL3" | ||
__version__ = "1.0" | ||
__version__ = "1.0.1" | ||
__maintainer__ = "Matheus Boni Vicari" | ||
__email__ = "[email protected]" | ||
__status__ = "Development" | ||
|
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 |
---|---|---|
|
@@ -19,7 +19,7 @@ | |
__copyright__ = "Copyright 2018-2019" | ||
__credits__ = ["Matheus Boni Vicari"] | ||
__license__ = "GPL3" | ||
__version__ = "1.0" | ||
__version__ = "1.0.1" | ||
__maintainer__ = "Matheus Boni Vicari" | ||
__email__ = "[email protected]" | ||
__status__ = "Development" | ||
|
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 |
---|---|---|
|
@@ -19,7 +19,7 @@ | |
__copyright__ = "Copyright 2018-2019" | ||
__credits__ = ["Matheus Boni Vicari"] | ||
__license__ = "GPL3" | ||
__version__ = "1.0" | ||
__version__ = "1.0.1" | ||
__maintainer__ = "Matheus Boni Vicari" | ||
__email__ = "[email protected]" | ||
__status__ = "Development" | ||
|
@@ -30,9 +30,6 @@ | |
import glob | ||
import os | ||
|
||
|
||
|
||
|
||
if __name__ == '__main__': | ||
|
||
try: | ||
|
@@ -96,4 +93,4 @@ | |
|
||
except: | ||
print('Mayavi not installed, this example cannot run!') | ||
|
||
|
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 |
---|---|---|
|
@@ -19,7 +19,7 @@ | |
__copyright__ = "Copyright 2018-2019" | ||
__credits__ = ["Matheus Boni Vicari"] | ||
__license__ = "GPL3" | ||
__version__ = "1.0" | ||
__version__ = "1.0.1" | ||
__maintainer__ = "Matheus Boni Vicari" | ||
__email__ = "[email protected]" | ||
__status__ = "Development" | ||
|
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 |
---|---|---|
|
@@ -19,7 +19,7 @@ | |
__copyright__ = "Copyright 2018-2019" | ||
__credits__ = ["Matheus Boni Vicari"] | ||
__license__ = "GPL3" | ||
__version__ = "1.0" | ||
__version__ = "1.0.1" | ||
__maintainer__ = "Matheus Boni Vicari" | ||
__email__ = "[email protected]" | ||
__status__ = "Development" | ||
|
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,4 +1,3 @@ | ||
numpy >= 1.11.3 | ||
scikit-learn >= 0.19.1 | ||
networkx >= 1.11 | ||
sys | ||
numpy>=1.11.3 | ||
scikit-learn>=0.19.1 | ||
networkx>=1.11 |
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 |
---|---|---|
|
@@ -20,7 +20,7 @@ | |
__copyright__ = "Copyright 2018-2019, pc2graph" | ||
__credits__ = ["Matheus Boni Vicari"] | ||
__license__ = "GPL3" | ||
__version__ = "1.0" | ||
__version__ = "1.0.1" | ||
__maintainer__ = "Matheus Boni Vicari" | ||
__email__ = "[email protected]" | ||
__status__ = "Development" | ||
|
@@ -32,12 +32,12 @@ def readme(): | |
with open('README.rst') as f: | ||
return f.read() | ||
|
||
with open('requirements.txt') as f: | ||
with open('requirements.txt', 'r') as f: | ||
required = f.read().splitlines() | ||
|
||
setup( | ||
name="pc2graph", | ||
version="1.0", | ||
version="1.0.1", | ||
author='Matheus Boni Vicari', | ||
author_email='[email protected]', | ||
packages=find_packages(), | ||
|