1- [tool . poetry ]
1+ [project ]
22name = " cycode"
3- version = " 0.0.0" # DON'T TOUCH. Placeholder. Will be filled automatically on poetry build from Git Tag
43description = " Boost security in your dev lifecycle via SAST, SCA, Secrets & IaC scanning."
5- keywords = [" secret-scan" , " cycode" , " devops" , " token" , " secret" , " security" , " cycode " , " code" ]
6- authors = [
" Cycode < [email protected] > " ]
4+ keywords = [" secret-scan" , " cycode" , " devops" , " token" , " secret" , " security" , " code" ]
5+ authors = [
{ name = " Cycode" , email = " [email protected] " } ]
76license = " MIT"
8- repository = " https://github.com/cycodehq/cycode-cli "
7+ requires-python = " >=3.9 "
98readme = " README.md"
109classifiers = [
1110 " Development Status :: 5 - Production/Stable" ,
1211 " Environment :: Console" ,
13- " License :: OSI Approved :: MIT License" ,
1412 " Natural Language :: English" ,
1513 " Operating System :: OS Independent" ,
1614 " Programming Language :: Python" ,
@@ -20,13 +18,21 @@ classifiers = [
2018 " Programming Language :: Python :: 3.11" ,
2119 " Programming Language :: Python :: 3.12" ,
2220 " Programming Language :: Python :: 3.13" ,
21+ " Programming Language :: Python :: 3.14" ,
2322]
23+ dynamic = [" dependencies" , " version" ]
2424
25- [tool . poetry .scripts ]
25+ [project .scripts ]
2626cycode = " cycode.cli.app:app"
2727
28+ [project .urls ]
29+ repository = " https://github.com/cycodehq/cycode-cli"
30+
31+ [tool .poetry ]
32+ requires-poetry = " >=2.0"
33+ version = " 0.0.0" # DON'T TOUCH. Placeholder. Will be filled automatically on poetry build from Git Tag
34+
2835[tool .poetry .dependencies ]
29- python = " >=3.9,<3.14"
3036click = " >=8.1.0,<8.2.0"
3137colorama = " >=0.4.3,<0.5.0"
3238pyyaml = " >=6.0,<7.0"
@@ -142,5 +148,5 @@ ban-relative-imports = "all"
142148quote-style = " single"
143149
144150[build-system ]
145- requires = [" poetry-core>=1 .0.0" , " poetry-dynamic-versioning>=1.0.0,<2.0.0" ]
151+ requires = [" poetry-core>=2 .0.0" , " poetry-dynamic-versioning>=1.0.0,<2.0.0" ]
146152build-backend = " poetry_dynamic_versioning.backend"
0 commit comments