Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chnged name again #11

Merged
merged 1 commit into from
Apr 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading