forked from ua-parser/uap-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
43 lines (39 loc) · 1.53 KB
/
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
38
39
40
41
42
43
[build-system]
requires = ["setuptools", "setuptools-scm", "PyYaml"]
build-backend = "setuptools.build_meta"
[project]
name = "ua-parser-up2date"
description = "Python port of Browserscope's user agent parser"
version = "1.0.0a"
readme = "README.rst"
requires-python = ">=3.9"
dependencies = []
optional-dependencies = { yaml = ["PyYaml"] }
license = {text = "Apache 2.0"}
urls = {repository = "https://github.com/robd003/uap-python-up2date"}
authors = [
{ name = "Stephen Lamm", email = "slamm@google.com"},
{ name = "PBS", email = "no-reply@pbs.org" },
{ name = "Selwin Ong", email = "selwin.ong@gmail.com" },
{ name = "Matt Robenolt", email = "matt@ydekproductions.com" },
{ name = "Lindsey Simon", email = "lsimon@commoner.com" },
]
maintainers = [
{ name = "masklinn", email = "uap@masklinn.net" }
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy"
]