Skip to content

Commit c113d8f

Browse files
committed
Drop setup.cfg
1 parent 69f6cb0 commit c113d8f

File tree

3 files changed

+36
-47
lines changed

3 files changed

+36
-47
lines changed

MANIFEST.IN

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
include ada_url/ada_c.h
2-
include ada_url/ada.h
32
include ada_url/ada.cpp
3+
include ada_url/ada.h
4+
include ada_url/ada.o
5+
include ada_url/py.typed

pyproject.toml

Lines changed: 33 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,34 @@
11
[build-system]
2-
requires = ["cffi", "setuptools", "urllib3>=2.0.2", "wheel"]
2+
requires = ["cffi", "setuptools", "urllib3", "wheel"]
33
build-backend = "setuptools.build_meta"
44

5+
[project]
6+
name = "ada-url"
7+
version = "1.14.0"
8+
authors = [
9+
{name = "Bo Bayles", email = "[email protected]"},
10+
]
11+
description = 'URL parser and manipulator based on the WHAT WG URL standard'
12+
readme = "README.rst"
13+
requires-python = ">=3.8"
14+
license = {text = "Apache 2.0"}
15+
classifiers = [
16+
"License :: OSI Approved :: Apache Software License",
17+
"Programming Language :: Python :: 3",
18+
"Programming Language :: Python :: 3 :: Only",
19+
]
20+
dependencies = [
21+
"cffi",
22+
]
23+
24+
[project.urls]
25+
Homepage = "https://www.ada-url.com/"
26+
Documentation = "https://ada-url.readthedocs.io"
27+
Repository = "https://github.com/ada-url/ada-python"
28+
29+
[tool.setuptools.packages.find]
30+
exclude = ["tests"]
31+
532
[tool.black]
633
line-length = 88
734
target-version = ['py38']
@@ -22,6 +49,11 @@ quote-style = "single"
2249
select = ["E", "F"]
2350
ignore = ["E501"]
2451

52+
[tool.coverage.run]
53+
include = [
54+
"ada_url/**",
55+
]
56+
2557
[tool.cibuildwheel]
2658
build = [
2759
"cp38-*",

setup.cfg

Lines changed: 0 additions & 45 deletions
This file was deleted.

0 commit comments

Comments
 (0)