Files
scylladb/setup.py
Ultrabug 2022da2405 Add overall python code QA and guidelines with flake8
ScyllaDB loves python & python loves ScyllaDB.

It would benefit the project to start enforcing some code guidelines
and basic QA with a linter along a PEP8 respect thanks to flake8.

This patch adds a tox config to at least start with an assessment
of the work to be done on all .py files in the code base.

To reduce its noise, tests on long lines (> 80char) are ignored
for now.

Signed-off-by: Ultrabug <ultrabug@gentoo.org>
Message-Id: <20170726134242.8927-1-ultrabug@gentoo.org>
2017-08-08 11:15:45 +03:00

13 lines
402 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=[])