File tree Expand file tree Collapse file tree 1 file changed +48
-0
lines changed
Expand file tree Collapse file tree 1 file changed +48
-0
lines changed Original file line number Diff line number Diff line change 1+ [build-system ]
2+ requires = [" setuptools" , " setuptools-scm" ]
3+ build-backend = " setuptools.build_meta"
4+
5+ [project ]
6+ name = " netauth"
7+ authors = [
8+ {name = " classabbyamp" , email = " dev@placeviolette.net" }
9+ ]
10+ description = " NetAuth client library"
11+ readme = " README.md"
12+ requires-python = " >=3.11"
13+ keywords = [" secure-access" , " authentication-service" , " netauth" ]
14+ classifiers = [
15+ " License :: OSI Approved :: MIT License" ,
16+ " Programming Language :: Python :: 3" ,
17+ " Programming Language :: Python :: 3.11" ,
18+ " Programming Language :: Python :: 3.12" ,
19+ ]
20+ packages =[" netauth" ]
21+ dynamic = [" version" ]
22+ dependencies = [
23+ " grpcio" ,
24+ ]
25+
26+ [project .optional-dependencies ]
27+ dev = [
28+ " grpcio-tools" ,
29+ ]
30+ ci = [
31+ " ruff" ,
32+ ]
33+ test = [
34+ " pytest" ,
35+ ]
36+ publish = [
37+ " twine" ,
38+ ]
39+
40+ [project .urls ]
41+ Homepage = " https://netauth.org"
42+ Documentation = " https://python.netauth.org"
43+ Repository = " https://github.com/netauth/python"
44+ Changelog = " https://github.com/netauth/python/blob/master/CHANGELOG.md"
45+
46+ [tool .setuptools .dynamic ]
47+ version = {attr = " netauth.__version__" }
48+
149[tool .ruff ]
250include = [" netauth/**" , " setup.py" ]
351exclude = [" netauth/_pb" ]
You can’t perform that action at this time.
0 commit comments