Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
include NOTICE* src/**/py.typed
global-exclude *.class *.py[cod] *.so *.dll __pycache__
recursive-include src py.typed
prune test*
9 changes: 6 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,11 @@
[project]
name = "neo4j"
description = "Neo4j Bolt driver for Python"
license = {text = "Apache License, Version 2.0"}
license = "Apache-2.0 AND Python-2.0"
license-files = [
"LICENSE*.txt",
"NOTICE*.txt",
]
readme = "README.rst"
authors = [
{name = "Neo4j, Inc.", email = "[email protected]"},
Expand All @@ -28,7 +32,6 @@ classifiers = [
"Development Status :: 5 - Production/Stable",
"Framework :: AsyncIO",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
Expand Down Expand Up @@ -61,7 +64,7 @@ pyarrow = ["pyarrow >= 1.0.0"]

[build-system]
requires = [
"setuptools == 75.6.0",
"setuptools == 80.9.0",
]
build-backend = "setuptools.build_meta"

Expand Down