Skip to content

Commit

Permalink
setup for github
Browse files Browse the repository at this point in the history
  • Loading branch information
dcolinmorgan committed Jan 3, 2024
1 parent e01fc10 commit 035933e
Show file tree
Hide file tree
Showing 2 changed files with 141 additions and 141 deletions.
240 changes: 120 additions & 120 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,130 +1,130 @@
[metadata]
name = cu_cat
version = file: cu_cat/_version.py
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
# [metadata]
# name = cu_cat
# version = file: cu_cat/_version.py
# 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
cuml-cu12>=22.02
cudf-cu12>=22.02
cupy-cuda12x>=12.0.0
python_requires = >=3.10
# [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
# cuml-cu12>=22.02
# cudf-cu12>=22.02
# cupy-cuda12x>=12.0.0
# 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
# [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
# [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
# [mypy]
# ignore_missing_imports = True
# allow_redefinition = True

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

[egg_info]
tag_build =
tag_date = 0
# [egg_info]
# tag_build =
# tag_date = 0

# ##github
# [bdist_wheel]
##github
[bdist_wheel]

# [versioneer]
# VCS = git
# style = pep440
# versionfile_source = cu_cat/_version.py
# versionfile_build = cu_cat/_version.py
# tag_prefix =
# parentdir_prefix = cu_cat-
[versioneer]
VCS = git
style = pep440
versionfile_source = cu_cat/_version.py
versionfile_build = cu_cat/_version.py
tag_prefix =
parentdir_prefix = cu_cat-

# [aliases]
# test=pytest
[aliases]
test=pytest

# # [easy_install]
# # find_links = https://pypi.nvidia.com
# [easy_install]
# find_links = https://pypi.nvidia.com
42 changes: 21 additions & 21 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,27 +2,27 @@

from setuptools import setup, find_packages
# # import versioneer
##github
# def unique_flatten_dict(d):
# return list(set(sum( d.values(), [] )))
#github
def unique_flatten_dict(d):
return list(set(sum( d.values(), [] )))

# core_requires = [
# 'numpy',
# 'pandas',
# 'setuptools',
# 'logging',
# 'typing',
# 'pyarrow>=0.15.0',
# 'scikit-learn',
# 'flake8>=5.0',
# 'mypy',
# 'pytest',
# 'psutil',
# 'build',
# # 'cuml', ## cannot test on github actions
# # 'cudf',
# # 'cupy'
# ]
core_requires = [
'numpy',
'pandas',
'setuptools',
'logging',
'typing',
'pyarrow>=0.15.0',
'scikit-learn',
'flake8>=5.0',
'mypy',
'pytest',
'psutil',
'build',
# 'cuml', ## cannot test on github actions
# 'cudf',
# 'cupy'
]


# if __name__ == "__main__":
Expand All @@ -40,7 +40,7 @@
python_requires='>3.7',
author='The Graphistry Team',
author_email='[email protected]',
# install_requires=core_requires,
install_requires=core_requires,
license='BSD',
# dependency_links=['https://pypi.nvidia.com'],
keywords=['cudf', 'cuml', 'GPU', 'Rapids']
Expand Down

0 comments on commit 035933e

Please sign in to comment.