3
3
4
4
from setuptools import find_packages , setup
5
5
6
- VERSION = "1.4 "
6
+ VERSION = "1.5 "
7
7
8
8
9
9
def get_long_description ():
@@ -31,12 +31,12 @@ def get_long_description():
31
31
"mysql" : ["mysqlclient" ],
32
32
"postgresql" : ["psycopg2" ],
33
33
},
34
- tests_require = [ "db-to-sqlite[test]" ] ,
34
+ python_requires = ">=3.7" ,
35
35
entry_points = """
36
36
[console_scripts]
37
37
db-to-sqlite=db_to_sqlite.cli:cli
38
38
""" ,
39
- url = "https://github.com/simonw /db-to-sqlite" ,
39
+ url = "https://datasette.io/tools /db-to-sqlite" ,
40
40
project_urls = {
41
41
"Documentation" : "https://github.com/simonw/db-to-sqlite/blob/main/README.md" ,
42
42
"Changelog" : "https://github.com/simonw/db-to-sqlite/releases" ,
@@ -45,13 +45,15 @@ def get_long_description():
45
45
"CI" : "https://travis-ci.com/simonw/db-to-sqlite" ,
46
46
},
47
47
classifiers = [
48
- "Development Status :: 3 - Alpha" ,
49
48
"Intended Audience :: Developers" ,
50
49
"Intended Audience :: Science/Research" ,
51
50
"Intended Audience :: End Users/Desktop" ,
52
51
"Topic :: Database" ,
53
52
"License :: OSI Approved :: Apache Software License" ,
54
- "Programming Language :: Python :: 3.6" ,
55
53
"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" ,
56
58
],
57
59
)
0 commit comments