Skip to content
Draft
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
54 changes: 54 additions & 0 deletions pyproject.toml
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

add in classifiers "License :: OSI Approved :: Apache Software License",

Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools", "Cython>=3.0", "toml", "cassandra-driver"]

[project]
name = "cassandra-driver"
description = "Apache Cassandra Python Driver"
dependencies = ['geomet>=1.1']
readme = "README.rst"
authors = [{name = "DataStax"}]
license = "Apache-2.0"
license-files = ["LICENSE"]
keywords = ["cassandra","cql","orm","dse","graph"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Software Development :: Libraries :: Python Modules"
]
dynamic = ["version"]

[project.optional-dependencies]
graph = ["gremlinpython==3.4.6"]
cle = ["cryptography>=42.0"]
test = ["pytest", "PyYAML", "pytz"]

[project.urls]
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

add 'homepage', and if it exists, 'changelog'

documentation = "https://docs.datastax.com/en/developer/python-driver/latest/"
source = "https://github.com/apache/cassandra-python-driver/"
issues = "https://issues.apache.org/jira/issues/?jql=project%20%3D%20CASSPYTHON%20ORDER%20BY%20key%20DESC"

[tool.setuptools.packages.find]
include = ['cassandra', 'cassandra.io', 'cassandra.cqlengine', 'cassandra.graph',
'cassandra.datastax', 'cassandra.datastax.insights', 'cassandra.datastax.graph',
'cassandra.datastax.graph.fluent', 'cassandra.datastax.cloud',
"cassandra.column_encryption"]

[tool.cassandra.driver]
extensions = true
murmur3-extension = true
libev-extension = true
cython-extensions = true
libev-includes = []
libev-libs = []
build-concurrency = 0
Loading