File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -22,6 +22,7 @@ def get_long_description():
22
22
version = VERSION ,
23
23
license = "Apache License, Version 2.0" ,
24
24
packages = find_packages (exclude = ["tests" , "tests.*" ]),
25
+ package_data = {"sqlite_utils" : ["py.typed" ]},
25
26
install_requires = [
26
27
"sqlite-fts4" ,
27
28
"click" ,
@@ -46,7 +47,6 @@ def get_long_description():
46
47
[console_scripts]
47
48
sqlite-utils=sqlite_utils.cli:cli
48
49
""" ,
49
- tests_require = ["sqlite-utils[test]" ],
50
50
url = "https://github.com/simonw/sqlite-utils" ,
51
51
project_urls = {
52
52
"Documentation" : "https://sqlite-utils.datasette.io/en/stable/" ,
@@ -69,4 +69,5 @@ def get_long_description():
69
69
"Programming Language :: Python :: 3.9" ,
70
70
"Programming Language :: Python :: 3.10" ,
71
71
],
72
+ zip_safe = False , # For mypy and py.typed
72
73
)
You can’t perform that action at this time.
0 commit comments