Skip to content

Commit cd07eda

Browse files
authored
Merge pull request #8 from Microsoft/readme-urls
Readme urls
2 parents 2b710cf + 4e4d810 commit cd07eda

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

msticpy/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
"""Version file."""
2-
VERSION = "0.1.6"
2+
VERSION = "0.1.7"

setup.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
"""Setup script for msticpy."""
77

88
import re
9-
109
import setuptools
10+
from collections import OrderedDict
1111

1212
INSTALL_REQUIRES = ['matplotlib>=3.0.0',
1313
'bokeh>=1.0.2',
@@ -43,7 +43,11 @@
4343
description="MSTIC Security Tools",
4444
long_description=long_description,
4545
long_description_content_type="text/markdown",
46-
url="https://https://github.com/microsoft/msticpy",
46+
url="https://github.com/microsoft/msticpy",
47+
project_urls=OrderedDict((
48+
("Documentation", "http://msticpy.readthedocs.io"),
49+
("Code", "https://github.com/microsoft/msticpy"),
50+
)),
4751
python_requires='>=3.6',
4852
packages=setuptools.find_packages(exclude=['*.tests']),
4953
classifiers=[

0 commit comments

Comments
 (0)