Skip to content
Snippets Groups Projects
Commit 2dc5bf74 authored by Piotr Maślanka's avatar Piotr Maślanka
Browse files

one source of version truth

parent 76e5dd36
No related branches found
Tags v2.0.22rc2
No related merge requests found
......@@ -59,9 +59,10 @@ author = u'Piotr Maślanka'
# built documents.
#
# The short X.Y version.
version = u'2.0'
from satella import __version__
version = __version__.split('.', 2)[:2].join('.')
# The full version, including alpha/beta/rc tags.
release = u'2.0.22rc2'
release = __version__
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
......
# coding=UTF-8
__version__ = '2.0.22rc2'
[metadata]
name = satella
version = 2.0.22rc2
description-file = README.md
author = Piotr Maślanka
author_email = piotrm@smok.co
......
# coding=UTF-8
from setuptools import setup, find_packages
from satella import __version__
setup(keywords=['ha', 'high availability', 'scalable', 'scalability', 'server'],
packages=find_packages(include=['satella', 'satella.*']),
version=__version__,
install_requires=[
"six",
"monotonic",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment