Skip to content

Commit

Permalink
Drop setup.cfg
Browse files Browse the repository at this point in the history
  • Loading branch information
bbayles committed Jun 21, 2024
1 parent 69f6cb0 commit c113d8f
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 47 deletions.
4 changes: 3 additions & 1 deletion MANIFEST.IN
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
include ada_url/ada_c.h
include ada_url/ada.h
include ada_url/ada.cpp
include ada_url/ada.h
include ada_url/ada.o
include ada_url/py.typed
34 changes: 33 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,34 @@
[build-system]
requires = ["cffi", "setuptools", "urllib3>=2.0.2", "wheel"]
requires = ["cffi", "setuptools", "urllib3", "wheel"]
build-backend = "setuptools.build_meta"

[project]
name = "ada-url"
version = "1.14.0"
authors = [
{name = "Bo Bayles", email = "[email protected]"},
]
description = 'URL parser and manipulator based on the WHAT WG URL standard'
readme = "README.rst"
requires-python = ">=3.8"
license = {text = "Apache 2.0"}
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
]
dependencies = [
"cffi",
]

[project.urls]
Homepage = "https://www.ada-url.com/"
Documentation = "https://ada-url.readthedocs.io"
Repository = "https://github.com/ada-url/ada-python"

[tool.setuptools.packages.find]
exclude = ["tests"]

[tool.black]
line-length = 88
target-version = ['py38']
Expand All @@ -22,6 +49,11 @@ quote-style = "single"
select = ["E", "F"]
ignore = ["E501"]

[tool.coverage.run]
include = [
"ada_url/**",
]

[tool.cibuildwheel]
build = [
"cp38-*",
Expand Down
45 changes: 0 additions & 45 deletions setup.cfg

This file was deleted.

0 comments on commit c113d8f

Please sign in to comment.