Skip to content

Commit

Permalink
Release 1.5
Browse files Browse the repository at this point in the history
Refs #37, #46, #47
  • Loading branch information
simonw committed Feb 7, 2023
1 parent 7e04965 commit b7c95fc
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

from setuptools import find_packages, setup

VERSION = "1.4"
VERSION = "1.5"


def get_long_description():
Expand Down Expand Up @@ -31,12 +31,12 @@ def get_long_description():
"mysql": ["mysqlclient"],
"postgresql": ["psycopg2"],
},
tests_require=["db-to-sqlite[test]"],
python_requires=">=3.7",
entry_points="""
[console_scripts]
db-to-sqlite=db_to_sqlite.cli:cli
""",
url="https://github.com/simonw/db-to-sqlite",
url="https://datasette.io/tools/db-to-sqlite",
project_urls={
"Documentation": "https://github.com/simonw/db-to-sqlite/blob/main/README.md",
"Changelog": "https://github.com/simonw/db-to-sqlite/releases",
Expand All @@ -45,13 +45,15 @@ def get_long_description():
"CI": "https://travis-ci.com/simonw/db-to-sqlite",
},
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Intended Audience :: End Users/Desktop",
"Topic :: Database",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
)

0 comments on commit b7c95fc

Please sign in to comment.