File tree Expand file tree Collapse file tree 2 files changed +15
-18
lines changed Expand file tree Collapse file tree 2 files changed +15
-18
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
1
[build-system ]
2
- requires = [" setuptools " , " wheel " ]
3
- build-backend = " setuptools.build_meta "
2
+ requires = [" hatchling " ]
3
+ build-backend = " hatchling.build "
4
4
5
5
[project ]
6
6
name = " mysql-to-sqlite3"
7
7
description = " A simple Python tool to transfer data from MySQL to SQLite 3"
8
+ readme = " README.md"
8
9
license = { text = " MIT" }
9
10
requires-python = " >=3.7"
10
11
authors = [
@@ -46,20 +47,20 @@ dependencies = [
46
47
" tqdm>=4.65.0" ,
47
48
" tabulate" ,
48
49
]
49
- dynamic = [" version" , " readme " ]
50
+ dynamic = [" version" ]
50
51
51
- [tool .setuptools .dynamic ]
52
- version = { attr = " mysql_to_sqlite3.__version__" }
53
- readme = { file = " README.md" , content-type = " text/markdown" }
52
+ [tool .hatch .version ]
53
+ path = " mysql_to_sqlite3/__init__.py"
54
54
55
- [tool .setuptools ]
56
- packages = [" mysql_to_sqlite3" ]
57
- include-package-data = true
58
- zip-safe = false
59
- license-files = [" LICENSE" ]
60
-
61
- [tool .distutils .bdist_wheel ]
62
- universal = true
55
+ [tool .hatch .build .targets .sdist ]
56
+ include = [
57
+ " mysql_to_sqlite3" ,
58
+ " tests" ,
59
+ " README.md" ,
60
+ " CODE-OF-CONDUCT.md" ,
61
+ " LICENSE" ,
62
+ " requirements_dev.txt" ,
63
+ ]
63
64
64
65
[project .scripts ]
65
66
mysql2sqlite = " mysql_to_sqlite3.cli:cli"
You can’t perform that action at this time.
0 commit comments