@@ -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.7 "
10+ requires-python = " >=3.8 "
1111authors = [
1212 { name = " Klemen Tusar" , email = " techouse@gmail.com" },
1313]
@@ -30,7 +30,6 @@ classifiers = [
3030 " Operating System :: OS Independent" ,
3131 " Programming Language :: Python" ,
3232 " Programming Language :: Python :: 3" ,
33- " Programming Language :: Python :: 3.7" ,
3433 " Programming Language :: Python :: 3.8" ,
3534 " Programming Language :: Python :: 3.9" ,
3635 " Programming Language :: Python :: 3.10" ,
@@ -69,7 +68,7 @@ mysql2sqlite = "mysql_to_sqlite3.cli:cli"
6968
7069[tool .black ]
7170line-length = 120
72- target-version = [" py37 " , " py38" , " py39" , " py310" , " py311" ]
71+ target-version = [" py38" , " py39" , " py310" , " py311" ]
7372include = ' \.pyi?$'
7473exclude = '''
7574(
@@ -110,7 +109,7 @@ markers = [
110109]
111110
112111[tool .mypy ]
113- python_version = " 3.7 "
112+ python_version = " 3.8 "
114113exclude = [
115114 " tests" ,
116115 " build" ,
0 commit comments