-
Notifications
You must be signed in to change notification settings - Fork 153
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- it's pypi.org not pypy.org - rtfd doesn't serve docs out of its main domain (which makes sense since docs can contain arbitrary JS) - add the doc and issues to the project URLs
- Loading branch information
Showing
3 changed files
with
10 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,13 +5,12 @@ build-backend = "setuptools.build_meta" | |
[project] | ||
name = "ua-parser" | ||
description = "Python port of Browserscope's user agent parser" | ||
version = "1.0.0a1" | ||
version = "1.0.0a2" | ||
readme = "README.rst" | ||
requires-python = ">=3.9" | ||
dependencies = ["ua-parser-builtins"] | ||
|
||
license = {text = "Apache 2.0"} | ||
urls = {repository = "https://github.com/ua-parser/uap-python"} | ||
|
||
authors = [ | ||
{ name = "Stephen Lamm", email = "[email protected]"}, | ||
|
@@ -44,6 +43,11 @@ classifiers = [ | |
# "Programming Language :: Python :: Implementation :: GraalPy", | ||
] | ||
|
||
[project.urls] | ||
documentation = "https://uap-python.readthedocs.io" | ||
repository = "https://github.com/ua-parser/uap-python" | ||
issues = "https://github.com/ua-parser/uap-python/issues" | ||
|
||
[project.optional-dependencies] | ||
yaml = ["PyYaml"] | ||
re2 = ["google-re2"] | ||
|