Skip to content

Commit

Permalink
chnged name again
Browse files Browse the repository at this point in the history
  • Loading branch information
D1midr0sh committed Apr 28, 2024
1 parent d1d5653 commit a91449c
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .flake8
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ ignore=
T201
exclude=
test.py
spandas/__init__.py
SellPandas/__init__.py
File renamed without changes.
2 changes: 1 addition & 1 deletion spandas/plots.py → SellPandas/plots.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import matplotlib.pyplot as plt
from matplotlib import font_manager
from pandas import DataFrame
from SPandas.utils import is_float
from SellPandas.utils import is_float

from typing import Tuple

Expand Down
4 changes: 2 additions & 2 deletions spandas/preprocessing.py → SellPandas/preprocessing.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@

# third party
from art import tprint
from SPandas.plots import print_distributions
from SPandas.utils import is_float
from SellPandas.plots import print_distributions
from SellPandas.utils import is_float

import pandas as pd

Expand Down
File renamed without changes.
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ def get_requirements():


setup(
name="SPandas",
name="SellPandas",
version="0.0.1",
author="D1midr0sh",
author="dimidrosh",
author_email="[email protected]",
description="This is the data analysis module made by Selling Pandas team",
long_description=readme(),
Expand All @@ -24,7 +24,7 @@ def get_requirements():
install_requires=get_requirements(),
classifiers=[
"Programming Language :: Python :: 3.11",
"License :: Apache-2.0",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
keywords="pandas eda analysis data science",
Expand Down
2 changes: 1 addition & 1 deletion tests/test.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"source": [
"import pandas as pd\n",
"from matplotlib import font_manager\n",
"from SPandas.preprocessing import *"
"from SellPandas.preprocessing import *"
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion tests/test.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import matplotlib.pyplot as plt
import seaborn as sns
import numpy as np
from SPandas.preprocessing import *
from SellPandas.preprocessing import *

# url = "ecology.xlsx"
# url = 'База данных Оригинал.xlsx'
Expand Down

0 comments on commit a91449c

Please sign in to comment.