Add package version information.

This commit is contained in:
Santiago Lamora 2019-10-25 13:30:51 +02:00
parent da8b91d892
commit 4f44aac655
2 changed files with 33 additions and 1 deletions

View File

@ -0,0 +1,29 @@
"""
Package metadata definition.
"""
VERSION = (0, 1, 0, 'alpha', 1)
def get_version():
"Returns a PEP 386-compliant version number from VERSION."
if (len(VERSION) != 5 or
VERSION[3] not in ('alpha', 'beta', 'rc', 'final')):
raise ValueError(
"{} is not PEP 386-compliant version number".format(VERSION))
# Now build the two parts of the version number:
# main = X.Y[.Z]
# sub = .devN - for pre-alpha releases
# | {a|b|c}N - for alpha, beta and rc releases
parts = 2 if VERSION[2] == 0 else 3
main = '.'.join(str(x) for x in VERSION[:parts])
sub = ''
if VERSION[3] != 'final':
mapping = {'alpha': 'a', 'beta': 'b', 'rc': 'c'}
sub = mapping[VERSION[3]] + str(VERSION[4])
return str(main + sub)

View File

@ -3,13 +3,16 @@ import os
from setuptools import find_packages, setup
# Dynamically calculate the version
version = __import__('musician').get_version()
# allow setup.py to be run from any path
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
setup(
name="django-musician",
version="0.1",
version=version,
url='https://gitlab.pangea.org/slamora/django-musician.git',
author='Santiago Lamora',
author_email='santiago@ribaguifi.com',