Skip to content

Commit

Permalink
Migrate away from setup.cfg
Browse files Browse the repository at this point in the history
In preparation for
pypa/setuptools#3214
  • Loading branch information
maxwell-k committed Jan 14, 2024
1 parent 74b959f commit 3dad7bf
Show file tree
Hide file tree
Showing 3 changed files with 49 additions and 48 deletions.
8 changes: 8 additions & 0 deletions .flake8
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
[flake8]
max-line-length = 88
extend-ignore = E203
exclude =
.git,
.venv,
__pycache__,
docs
41 changes: 41 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,44 @@
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"

[project]
name = "qgridtrusted"
dynamic = ["version"]
readme = "README.md"
description = "An Interactive Grid for Sorting and Filtering DataFrames in Jupyter Notebook"
authors = [
{ name = "Quantopian Inc.", email = "opensource@quantopian.com" },
]
license = { file = "LICENSE" }
dependencies = [
"notebook",
"pandas",
"ipywidgets",
]
keywords = ["ipython", "jupyter", "widgets"]
classifiers = [
"Development Status :: 4 - Beta",
"Framework :: IPython",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Office/Business :: Financial",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Multimedia :: Graphics",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]

[project.urls]
Homepage = "https://github.com/maxwell-k/qgridtrusted/"

[project.optional-dependencies]
test = ["pytest", "flake8"]

[tool.setuptools]
zip-safe = false
packages = ["qgrid", "qgrid.static"]

[tool.setuptools.dynamic]
version = { attr = "qgrid._version.__version__" }
48 changes: 0 additions & 48 deletions setup.cfg

This file was deleted.

0 comments on commit 3dad7bf

Please sign in to comment.