-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpyproject.toml
37 lines (31 loc) · 921 Bytes
/
pyproject.toml
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
[project]
name = "linehaul"
version = "1.0.2"
description = "User-Agent parsing for PyPI analytics"
readme = "README.md"
requires-python = ">=3.11, <4"
license = {file = "LICENSE.txt"}
keywords = ["pypi", "user-agent", "parsing"]
authors = [
{name = "PyPI Admins", email = "[email protected]" }
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3 :: Only",
"Typing :: Typed",
]
dependencies = [
"cattrs",
"packaging",
"pyparsing",
]
[project.urls]
"Homepage" = "https://github.com/pypi/linehaul-cloud-function"
"Source" = "https://github.com/pypi/linehaul-cloud-function"
[build-system]
requires = ["setuptools>=43.0.0", "wheel"]
build-backend = "setuptools.build_meta"