Skip to content

Commit bb16655

Browse files
committed
Release 1.0
Refs #11
1 parent 3eb2b06 commit bb16655

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

setup.py

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from setuptools import setup
22
import os
33

4-
VERSION = "0.5"
4+
VERSION = "1.0"
55

66

77
def 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
)

0 commit comments

Comments
 (0)