Skip to content

Commit

Permalink
setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Zeutschler committed Jun 14, 2024
1 parent 6f96c74 commit 16fb214
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 8 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/samples/datasets/car_prices.csv
/.venv/
/docs/
/dist/
2 changes: 1 addition & 1 deletion cubedpandas/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from cubedpandas.caching_strategy import CachingStrategy
from cubedpandas.cube import Cube
from cubedpandas.cube_aggregation import CubeAggregationFunctionType, CubeAggregationFunction
from cubedpandas.pandas_extension import cubed, CubedPandasAccessor
from cubedpandas.pandas_extension import cubed, CubedPandasAccessor, EAGER_CACHING_THRESHOLD

VERSION = "0.1.0"

Expand Down
4 changes: 2 additions & 2 deletions cubedpandas/pandas_extension.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
# MIT License - please see the LICENSE file that should have been included in this package.

import pandas as pd
from cube import Cube
from slice import Slice
from cubedpandas.cube import Cube
from cubedpandas.slice import Slice
from cubedpandas.caching_strategy import CachingStrategy, EAGER_CACHING_THRESHOLD

@pd.api.extensions.register_dataframe_accessor("cubed")
Expand Down
10 changes: 5 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
# ...to run the build and deploy process to pypi.org manually:
# 1. delete folder 'build'
# 2. python3 setup.py sdist bdist_wheel # note: Wheel need to be installed: pip install wheel
# 3. twine upload dist/* # note: Twine need to be installed: pip install twine
# 3. twine upload -r pypi dist/* # note: Twine need to be installed: pip install twine

# ... via Github actions
# https://packaging.python.org/en/latest/guides/publishing-package-distribution-releases-using-github-actions-ci-cd-workflows/
Expand All @@ -35,10 +35,10 @@
long_description=LONG_DESCRIPTION,
classifiers=[
"Topic :: Utilities",
"Topic :: Database :: Database Engines/Servers",
"Topic :: Scientific Engineering",
"Topic :: Scientific Engineering :: Information Analysis",

"Topic :: Database",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Mathematics",
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
Expand Down

0 comments on commit 16fb214

Please sign in to comment.