-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.cfg
44 lines (39 loc) · 859 Bytes
/
setup.cfg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
[metadata]
name = ada-url
version = 1.0.1
description = 'URL parser and manipulator based on the WHAT WG URL standard'
long_description = file: README.rst
long_description_content_type = text/x-rst
author = Bo Bayles
author_email = [email protected]
license = Apache 2.0
license_files =
LICENSE
classifiers =
License :: OSI Approved :: Apache Software License
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
project_urls =
homepage = https://github.com/ada-url/ada-python
[options]
packages = find:
python_requires = >=3.8
include_package_data = True
install_requires =
cffi
[options.packages.find]
exclude =
tests
[options.package_data]
ada_url =
*.c
*.cpp
*.o
*.so
*.h
[coverage:run]
include =
ada_url/**
[coverage:report]
exclude_lines =
if __name__ == .__main__.: