Skip to content

Commit b7c95fc

Browse files
committed
Release 1.5
Refs #37, #46, #47
1 parent 7e04965 commit b7c95fc

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

setup.py

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
from setuptools import find_packages, setup
55

6-
VERSION = "1.4"
6+
VERSION = "1.5"
77

88

99
def get_long_description():
@@ -31,12 +31,12 @@ def get_long_description():
3131
"mysql": ["mysqlclient"],
3232
"postgresql": ["psycopg2"],
3333
},
34-
tests_require=["db-to-sqlite[test]"],
34+
python_requires=">=3.7",
3535
entry_points="""
3636
[console_scripts]
3737
db-to-sqlite=db_to_sqlite.cli:cli
3838
""",
39-
url="https://github.com/simonw/db-to-sqlite",
39+
url="https://datasette.io/tools/db-to-sqlite",
4040
project_urls={
4141
"Documentation": "https://github.com/simonw/db-to-sqlite/blob/main/README.md",
4242
"Changelog": "https://github.com/simonw/db-to-sqlite/releases",
@@ -45,13 +45,15 @@ def get_long_description():
4545
"CI": "https://travis-ci.com/simonw/db-to-sqlite",
4646
},
4747
classifiers=[
48-
"Development Status :: 3 - Alpha",
4948
"Intended Audience :: Developers",
5049
"Intended Audience :: Science/Research",
5150
"Intended Audience :: End Users/Desktop",
5251
"Topic :: Database",
5352
"License :: OSI Approved :: Apache Software License",
54-
"Programming Language :: Python :: 3.6",
5553
"Programming Language :: Python :: 3.7",
54+
"Programming Language :: Python :: 3.8",
55+
"Programming Language :: Python :: 3.9",
56+
"Programming Language :: Python :: 3.10",
57+
"Programming Language :: Python :: 3.11",
5658
],
5759
)

0 commit comments

Comments
 (0)