-
Notifications
You must be signed in to change notification settings - Fork 58
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Marius Conjeaud
committed
May 21, 2024
1 parent
1cd1bcc
commit 90f5ee9
Showing
7 changed files
with
14 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
include README.rst | ||
include README.md | ||
include AUTHORS.txt | ||
include Changelog | ||
include LICENSE |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,7 +16,7 @@ | |
__email__ = "[email protected]" | ||
__license__ = "MIT" | ||
__package__ = "django_neomodel" | ||
__version__ = "0.1.1" | ||
__version__ = "0.1.2" | ||
|
||
|
||
default_app_config = "django_neomodel.apps.NeomodelConfig" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,12 +13,10 @@ authors = [ | |
{name = "Robin Edwards", email = "[email protected]"}, | ||
] | ||
maintainers = [ | ||
{name = "Athanasios Anastasiou", email = "[email protected]"}, | ||
{name = "Cristina Escalante"}, | ||
{name = "Marius Conjeaud", email = "[email protected]"}, | ||
] | ||
description = "Use Neo4j with Django!" | ||
readme = "README.rst" | ||
readme = "README.md" | ||
requires-python = ">=3.7" | ||
keywords = ["graph", "neo4j", "django", "plugin", "neomodel"] | ||
license = {text = "MIT"} | ||
|
@@ -33,10 +31,10 @@ classifiers = [ | |
"Topic :: Database", | ||
] | ||
dependencies = [ | ||
"neomodel~=5.1.0", | ||
"neomodel~=5.3.0", | ||
'django>=2.2' | ||
] | ||
version='0.1.1' | ||
version='0.1.2' | ||
|
||
[project.urls] | ||
repository = "http://github.com/robinedwards/django-neomodel" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
pytest>=7.1 | ||
pytest-django>=3.10.0 | ||
pytest-cov>=4.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
neomodel~=5.3.0 | ||
django>=2.2 |