Skip to content
Open
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
1 change: 0 additions & 1 deletion VERSION

This file was deleted.

49 changes: 49 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"

[project]
name = "jqfpy"
version = "0.6.2"
description = "jq for pythonista"
authors = [
{name = "podhmo", email = "ababjam61+github@gmail.com"},
]
keywords = ["jq"]
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
dependencies = [
"magicalimport",
]
license = {file = "LICENSE"}
urls = {Homepage = "https://github.com/podhmo/jqfpy"}

# readme is dynamic and configured in [tool.setuptools.dynamic.readme]
dynamic = ["readme"]

[project.optional-dependencies]
yaml = ["PyYAML"]
dev = ["black"]

[project.scripts]
jqfpy = "jqfpy.__main__:main"

[tool.setuptools]
include-package-data = true
zip-safe = false

[tool.setuptools.packages.find]
where = ["."]
include = ["jqfpy*"]
exclude = ["jqfpy.tests*"]
namespaces = false

[tool.setuptools.dynamic.readme]
file = ["README.md", "CHANGES.txt"]
content-type = "text/markdown"
2 changes: 0 additions & 2 deletions setup.cfg

This file was deleted.

57 changes: 0 additions & 57 deletions setup.py

This file was deleted.