-
Notifications
You must be signed in to change notification settings - Fork 573
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (52 loc) · 2.11 KB
/
pyproject.toml
File metadata and controls
57 lines (52 loc) · 2.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
[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",
"License :: OSI Approved :: Apache Software License",
"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]
homepage = "https://github.com/apache/cassandra-python-driver/"
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"
changelog = "https://github.com/apache/cassandra-python-driver/blob/trunk/CHANGELOG.rst"
[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]
build-extensions = true
build-murmur3-extension = true
build-libev-extension = true
build-cython-extensions = true
libev-includes = []
libev-libs = []
build-concurrency = 0