Skip to content

Commit

Permalink
feat(rename): rename package to aviod duplication in pypi
Browse files Browse the repository at this point in the history
  • Loading branch information
MCatherine1994 committed Jan 30, 2025
1 parent 88394c4 commit 3a98886
Show file tree
Hide file tree
Showing 10 changed files with 11 additions and 11 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,16 +23,16 @@ The `pyeda` package complements the Python ecosystem by providing simple and eff
## Installation

``` bash
$ pip install pyeda
$ pip install pyeda31
```

## Usage

`pyeda` can be used to verify the format of data files and perform basic exploratory data analysis as follows:
```python
from pyeda.check_csv import check_csv
from pyeda.pymissing_values_summary import missing_values_summary
from pyeda.data_summary import get_summary_statistics
from pyeda31.check_csv import check_csv
from pyeda31.pymissing_values_summary import missing_values_summary
from pyeda31.data_summary import get_summary_statistics
```
#### Check if the given data file is in csv format
```python
Expand Down
6 changes: 3 additions & 3 deletions docs/example.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@
"source": [
"import csv\n",
"import pandas as pd\n",
"from pyeda.check_csv import check_csv\n",
"from pyeda.pymissing_values_summary import missing_values_summary\n",
"from pyeda.data_summary import get_summary_statistics"
"from pyeda31.check_csv import check_csv\n",
"from pyeda31.pymissing_values_summary import missing_values_summary\n",
"from pyeda31.data_summary import get_summary_statistics"
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tool.poetry]
name = "pyeda"
name = "pyeda31"
version = "0.1.0"
description = "A python package to support exploratory data analysis!"
authors = ["Catherine Meng, Jessie Zhang, Zheng He"]
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion tests/test_check_csv.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import pytest
import os
from pyeda.check_csv import check_csv
from pyeda31.check_csv import check_csv


@pytest.fixture
Expand Down
2 changes: 1 addition & 1 deletion tests/test_data_summary.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import pytest
import pandas as pd
from pyeda.data_summary import get_summary_statistics
from pyeda31.data_summary import get_summary_statistics

@pytest.fixture
def sample_df():
Expand Down
2 changes: 1 addition & 1 deletion tests/test_missing.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from pyeda.pymissing_values_summary import missing_values_summary
from pyeda31.pymissing_values_summary import missing_values_summary
import pytest
import pandas as pd

Expand Down

0 comments on commit 3a98886

Please sign in to comment.