File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed
Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change 11from setuptools import setup
22import os
33
4- VERSION = "0.5 "
4+ VERSION = "1.0 "
55
66
77def get_long_description ():
@@ -19,14 +19,19 @@ def get_long_description():
1919 long_description_content_type = "text/markdown" ,
2020 author = "Simon Willison" ,
2121 url = "https://github.com/dogsheep/healthkit-to-sqlite" ,
22+ project_urls = {
23+ "Issues" : "https://github.com/dogsheep/healthkit-to-sqlite/issues" ,
24+ "CI" : "https://github.com/dogsheep/healthkit-to-sqlite/actions" ,
25+ "Changelog" : "https://github.com/dogsheep/healthkit-to-sqlite/releases" ,
26+ },
2227 license = "Apache License, Version 2.0" ,
2328 version = VERSION ,
2429 packages = ["healthkit_to_sqlite" ],
2530 entry_points = """
2631 [console_scripts]
2732 healthkit-to-sqlite=healthkit_to_sqlite.cli:cli
2833 """ ,
29- install_requires = ["sqlite-utils~ =2.4.4" ],
34+ install_requires = ["sqlite-utils> =2.4.4" ],
3035 extras_require = {"test" : ["pytest" ]},
3136 tests_require = ["healthkit-to-sqlite[test]" ],
3237)
You can’t perform that action at this time.
0 commit comments