Bump version. Use namespace searching for packaging trustgraph-core

This commit is contained in:
Cyber MacGeddon 2024-09-28 22:01:10 +01:00
parent ad4482efae
commit c6737e20be

View file

@ -7,7 +7,7 @@ with open("../README.md", "r") as fh:
version = "0.11.5" version = "0.11.5"
setuptools.setup( setuptools.setup(
name="trustgraph", name="trustgraph-core",
version=version, version=version,
author="trustgraph.ai", author="trustgraph.ai",
author_email="security@trustgraph.ai", author_email="security@trustgraph.ai",
@ -15,7 +15,10 @@ setuptools.setup(
long_description=long_description, long_description=long_description,
long_description_content_type="text/markdown", long_description_content_type="text/markdown",
url="https://github.com/trustgraph-ai/trustgraph", url="https://github.com/trustgraph-ai/trustgraph",
packages=setuptools.find_packages(), packages=setuptools.find_namespace_packages(
where='./',
# include=['trustgraph.core']
),
classifiers=[ classifiers=[
"Programming Language :: Python :: 3", "Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)", "License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",