Skip to content

Commit

Permalink
V1.0.1
Browse files Browse the repository at this point in the history
Added missing MANIFEST.in
  • Loading branch information
mattbv committed Feb 20, 2019
1 parent 7aa26f8 commit af0e0b5
Show file tree
Hide file tree
Showing 10 changed files with 25 additions and 19 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
v1.0.1
------
- Fixed installation by adding MANIFEST.in to include requirements.txt.
- MANIFEST.in now also includes examples and test data.

v1.0
----
- Generated setup files to install package.
Expand Down
5 changes: 5 additions & 0 deletions MANIFEST.in
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
6 changes: 3 additions & 3 deletions pc2graph/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

2 changes: 1 addition & 1 deletion pc2graph/downsampling.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion pc2graph/examples/example_batch.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
7 changes: 2 additions & 5 deletions pc2graph/examples/example_plot_gif.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -30,9 +30,6 @@
import glob
import os




if __name__ == '__main__':

try:
Expand Down Expand Up @@ -96,4 +93,4 @@

except:
print('Mayavi not installed, this example cannot run!')


2 changes: 1 addition & 1 deletion pc2graph/examples/example_single.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion pc2graph/shortpath.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
7 changes: 3 additions & 4 deletions requirements.txt
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
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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(),
Expand Down

0 comments on commit af0e0b5

Please sign in to comment.