1- [tool .poetry ]
1+ [build-system ]
2+ requires = [" hatchling" ]
3+ build-backend = " hatchling.build"
4+
5+ [project ]
26name = " ref_gsd"
3- version = " 0.0.2 "
7+ dynamic = [ " version " ]
48description = " Reference implementation of generalised score distribution in python"
5- authors = [" Krzysztof Rusek <krusek@agh.edu.pl> " ]
6- license = " Apache License 2.0 "
9+ authors = [{ name = " Krzysztof Rusek" , email = " krussek@gmail.com " } ]
10+ license = { file = " LICENSE " }
711readme = " README.md"
812
913keywords = [" jax" , " distribution" , " QoE" , " test" ]
@@ -20,17 +24,26 @@ classifiers = [
2024 " Topic :: Scientific/Engineering :: Information Analysis" ,
2125 " Topic :: Scientific/Engineering :: Mathematics" ,
2226]
27+ requires-python = " >=3.9"
28+ dependencies =[" jax>=0.4.6" ]
2329
24- packages =[{include =" gsd" , from =" src" }]
30+ [project .urls ]
31+ Homepage = " https://github.com/krzysztofrusek/queuinx"
2532
26- [tool .poetry .dependencies ]
27- python = " ^3.9"
28- jax = " ^0.4.6"
33+ [tool .hatch .version ]
34+ path = " src/gsd/__init__.py"
2935
30- [tool .poetry .group .dev .dependencies ]
31- pytest = " ^7.1.3"
32- jaxlib = " ^0.4.6"
36+ [tool .hatch .build ]
37+ sources = [" src" ]
38+
39+ [tool .hatch .build .targets ]
40+ include = [
41+ " /src/*" ,
42+ ]
43+
44+ [tool .hatch .envs .default ]
45+ dependencies =[" pytest" ," jaxlib>=0.4.6" ]
46+
47+ [tool .hatch .envs .default .scripts ]
48+ test = " pytest {args:tests}"
3349
34- [build-system ]
35- requires = [" poetry-core" ]
36- build-backend = " poetry.core.masonry.api"
0 commit comments