Skip to content

Commit

Permalink
version back to semvar
Browse files Browse the repository at this point in the history
  • Loading branch information
soad003 committed Jan 25, 2024
1 parent 3bd41e5 commit c2f5aab
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
from setuptools import setup, find_packages # noqa: H301

NAME = "graphsense-python"
VERSION = "24.1.1"
VERSION = "1.4.1"
# To install the library, run the following
#
# python setup.py install
Expand All @@ -25,6 +25,9 @@
"python-dateutil",
]

with open("README.md", 'r') as f:
long_description = f.read()

setup(
name=NAME,
version=VERSION,
Expand All @@ -37,6 +40,6 @@
install_requires=REQUIRES,
packages=find_packages(exclude=["test", "tests"]),
include_package_data=True,
long_description="file: README.md",
long_description=long_description,
long_description_content_type = "text/markdown; charset=UTF-8; variant=GFM"
)

0 comments on commit c2f5aab

Please sign in to comment.