1- [tool . poetry ]
1+ [project ]
22name = " reloader.py"
3- version = " 0.15.1 "
3+ version = " 0.16.0 "
44description = " A simple script reloader"
55license = " MIT"
6- authors = [
" EcmaXp < [email protected] > " ]
7- repository = " https://github.com/EcmaXp/reloader.py "
8- packages = [{ include = " reloader.py " } ]
6+ authors = [
{ name = " EcmaXp" , email = " [email protected] " } ]
7+ requires-python = " >=3.10 "
8+ dependencies = [" watchdog>=5.0.0 " ]
99classifiers = [
1010 " Development Status :: 4 - Beta" ,
1111 " Environment :: Console" ,
@@ -15,20 +15,26 @@ classifiers = [
1515 " Programming Language :: Python :: 3.10" ,
1616 " Programming Language :: Python :: 3.11" ,
1717 " Programming Language :: Python :: 3.12" ,
18+ " Programming Language :: Python :: 3.13" ,
1819 " Programming Language :: Python :: Implementation :: CPython" ,
1920 " Topic :: Software Development :: Debuggers" ,
2021 " Topic :: Software Development :: Libraries :: Python Modules" ,
2122 " Topic :: Software Development :: Testing" ,
2223 " Topic :: Utilities" ,
2324]
2425
25- [tool .poetry .dependencies ]
26- python = " ^3.10"
27- watchdog = " ^5.0.0"
26+ [project .urls ]
27+ Repository = " https://github.com/EcmaXp/reloader.py"
2828
29- [tool . poetry .scripts ]
29+ [project .scripts ]
3030"reloader" = " reloader:main"
3131
3232[build-system ]
33- requires = [" poetry-core" ]
34- build-backend = " poetry.core.masonry.api"
33+ requires = [" hatchling" ]
34+ build-backend = " hatchling.build"
35+
36+ [tool .hatch .build .targets .wheel ]
37+ packages = [" reloader.py" ]
38+
39+ [tool .hatch .build .targets .sdist ]
40+ packages = [" reloader.py" ]
0 commit comments