Skip to content

Commit

Permalink
v7.13
Browse files Browse the repository at this point in the history
  • Loading branch information
dcolinmorgan committed Jan 2, 2024
1 parent e317e6a commit ba0b0f0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 114 deletions.
2 changes: 1 addition & 1 deletion cu_cat/VERSION.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.07.10
0.07.13
112 changes: 0 additions & 112 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,116 +1,4 @@
[metadata]
name = cu_cat
version = file: cu_cat/VERSION.txt
description = Prepping tables for machine learning
long_description = file: README.md
license = BSD
license_files = LICENSE.txt
classifiers =
Development Status :: 5 - Production/Stable
Environment :: Console
Intended Audience :: Science/Research
License :: OSI Approved :: BSD License
Operating System :: OS Independent
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Topic :: Scientific/Engineering
Topic :: Software Development :: Libraries
project_urls =
Homepage = http://github.com/graphistry/cu-cat/
Source = https://github.com/graphistry/cu-cat

[options]
include_package_data = True
packages = find:
install_requires =
scikit-learn>=1.2.1
numpy>=1.23.5
scipy>=1.9.3
pandas>=1.5.3
packaging>=23.1
python_requires = >=3.10

[options.extras_require]
dev =
pytest
pytest-cov
pytest-xdist==2.5.0
pytest-xdist[psutil]
coverage
mypy
numpydoc
flake8
openml
pre-commit
pyarrow =
pyarrow
polars =
pyarrow
polars
doc =
pydata-sphinx-theme
sphinxext-opengraph
sphinx-copybutton
matplotlib
seaborn
statsmodels
numpydoc
jupyterlite-sphinx
jupyterlite-pyodide-kernel
pyarrow
benchmarks =
numpy
pandas
matplotlib
seaborn
tqdm
thefuzz
autofj
pyarrow
loguru
min-py310 =
scikit-learn==1.2.1
numpy==1.23.5
scipy==1.9.3
pandas==1.5.3

[flake8]
max-line-length = 88
target-version = ['py310']
ignore =
E24,
E121,
E123,
E126,
E203,
E226,
E704,
E731,
E741,
W503,
W504
per-file-ignores =
examples/*:E402
doc/conf.py:E402
exclude =
.git,
__pycache__,
dist,
build

[mypy]
ignore_missing_imports = True
allow_redefinition = True

[codespell]
skip = ./.git,./.mypy_cache

[egg_info]
tag_build =
tag_date = 0


##github
[bdist_wheel]

[versioneer]
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
##github
#!/usr/bin/env python

from setuptools import setup, find_packages
Expand Down Expand Up @@ -27,7 +28,7 @@ def unique_flatten_dict(d):
# if __name__ == "__main__":
setup(
name='cu-cat',
version='v0.07.10', # versioneer.get_version(),
version='v0.07.13', # versioneer.get_version(),
# cmdclass='0.7.7', # versioneer.get_cmdclass(),
packages = find_packages(),
platforms='any',
Expand Down

0 comments on commit ba0b0f0

Please sign in to comment.