@@ -7,7 +7,7 @@ name = "mysql-to-sqlite3"
77description = " A simple Python tool to transfer data from MySQL to SQLite 3"
88readme = " README.md"
99license = { text = " MIT" }
10- requires-python = " >=3.8 "
10+ requires-python = " >=3.9 "
1111authors = [
1212 {
name =
" Klemen Tusar" ,
email =
" [email protected] " },
1313]
@@ -29,11 +29,11 @@ classifiers = [
2929 " Operating System :: OS Independent" ,
3030 " Programming Language :: Python" ,
3131 " Programming Language :: Python :: 3" ,
32- " Programming Language :: Python :: 3.8" ,
3332 " Programming Language :: Python :: 3.9" ,
3433 " Programming Language :: Python :: 3.10" ,
3534 " Programming Language :: Python :: 3.11" ,
3635 " Programming Language :: Python :: 3.12" ,
36+ " Programming Language :: Python :: 3.13" ,
3737 " Programming Language :: Python :: Implementation :: CPython" ,
3838 " Topic :: Database" ,
3939]
@@ -78,7 +78,7 @@ mysql2sqlite = "mysql_to_sqlite3.cli:cli"
7878
7979[tool .black ]
8080line-length = 120
81- target-version = [" py38 " , " py39" , " py310" , " py311" , " py312" ]
81+ target-version = [" py39" , " py310" , " py311" , " py312" , " py313 " ]
8282include = ' \.pyi?$'
8383exclude = '''
8484(
@@ -122,7 +122,7 @@ markers = [
122122
123123[tool .mypy ]
124124mypy_path = " src"
125- python_version = " 3.8 "
125+ python_version = " 3.9 "
126126exclude = [
127127 " tests" ,
128128 " docs" ,
0 commit comments