Drop the AGPL license in favor of a source-available license. See the blog post [1] for details. [1] https://www.scylladb.com/2024/12/18/why-were-moving-to-a-source-available-license/
22 lines
739 B
Python
22 lines
739 B
Python
from setuptools import find_packages, setup
|
|
|
|
setup(
|
|
name="scylla",
|
|
description='NoSQL data store using the seastar framework, compatible with Apache Cassandra',
|
|
url='https://github.com/scylladb/scylla',
|
|
download_url='https://github.com/scylladb/scylla/tags',
|
|
license='ScyllaDB-Source-Available-1.0',
|
|
platforms='any',
|
|
packages=find_packages(),
|
|
include_package_data=True,
|
|
install_requires=[],
|
|
classifiers=[
|
|
"Programming Language :: Python",
|
|
"Programming Language :: Python :: 3",
|
|
"Programming Language :: Python :: 3.4",
|
|
"Programming Language :: Python :: 3.5",
|
|
"Programming Language :: Python :: 3.6",
|
|
"Programming Language :: Python :: 3.7",
|
|
],
|
|
)
|