Skip to content

Commit 876e030

Browse files
committed
renaming package to ecadataset
1 parent 86ac918 commit 876e030

File tree

12 files changed

+10
-11
lines changed

12 files changed

+10
-11
lines changed

.gitattributes

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
src/eca/_version.py export-subst
1+
src/ecadataset/_version.py export-subst

MANIFEST.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
include versioneer.py
2-
include src/eca/_version.py
2+
include src/ecadataset/_version.py

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ You'll be prompted for your synapse credentials and the data will be downloaded.
1818

1919
```python
2020
import matplotlib.pyplot as plt
21-
from eca import ECADataset, DataSource, AnnotationType, content_area_hausdorff
21+
from ecadataset import ECADataset, DataSource, AnnotationType, content_area_hausdorff
2222

2323
# Create dataset object...
2424
dataset = ECADataset(

setup.cfg

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[versioneer]
22
VCS = git
33
style = pep440
4-
versionfile_source = src/eca/_version.py
5-
versionfile_build = eca/_version.py
4+
versionfile_source = src/ecadataset/_version.py
5+
versionfile_build = ecadataset/_version.py
66
tag_prefix =
7-
parentdir_prefix = eca-
7+
parentdir_prefix = ecadataset-

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
url='https://github.com/charliebudd/eca-dataset',
1717
license='MIT',
1818
package_dir={'':'src'},
19-
packages=['eca'],
19+
packages=['ecadataset'],
2020
scripts=['bin/download-eca'],
2121
install_requires=['synapseclient', 'pillow', 'numpy']
2222
)
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

tests/__init__.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
1-
from .test_data_loader import TestDataLoader
2-
from .test_hausdorff_distance import TestHausdorffDistance
1+
# Required to have tests found

0 commit comments

Comments
 (0)