File tree 1 file changed +43
-0
lines changed
1 file changed +43
-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 =
" [email protected] " }
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
+ " ruff" ,
30
+ ]
31
+ test = [
32
+ " pytest" ,
33
+ ]
34
+
35
+ [project .urls ]
36
+ Homepage = " https://netauth.org"
37
+ # Documentation = "https://netauth.readthedocs.io"
38
+ # Repository = "https://github.com/netauth/python"
39
+ # Changelog = "https://github.com/netauth/python/blob/master/CHANGELOG.md"
40
+
41
+ [tool .setuptools .dynamic ]
42
+ version = {attr = " netauth.__version__" }
43
+
1
44
[tool .ruff ]
2
45
include = [" netauth/**" , " setup.py" ]
3
46
exclude = [" netauth/_pb" ]
You can’t perform that action at this time.
0 commit comments