Skip to content

Commit

Permalink
fix project metadata to fix install issues
Browse files Browse the repository at this point in the history
  • Loading branch information
jeking3 committed Apr 23, 2022
1 parent b278479 commit bfc5204
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
[tool.black]
line-length = 88
target-version = ["py36"]
target-version = ["py37"]

[tool.isort]
profile = "black"
py_version = "36"
py_version = "37"

[tool.coverage.run]
parallel = true
Expand Down
8 changes: 7 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,16 @@
with open("README.rst") as readme, open("CHANGES.rst") as changes:
setup(
name="django-simple-history",
use_scm_version={"version_scheme": "post-release"},
use_scm_version={
"version_scheme": "post-release",
"local_scheme": "node-and-date",
"relative_to": __file__,
"root": ".",
},
setup_requires=["setuptools_scm"],
description="Store model history and view/revert changes from admin site.",
long_description="\n".join((readme.read(), changes.read())),
long_description_content_type="text/x-rst",
author="Corey Bertram",
author_email="corey@qr7.com",
maintainer="Trey Hunner",
Expand Down

0 comments on commit bfc5204

Please sign in to comment.