Files
scylladb/setup.py
2018-11-28 23:54:03 +01:00

22 lines
714 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='AGPL',
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",
],
)