Add package version information.
This commit is contained in:
parent
da8b91d892
commit
4f44aac655
|
@ -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)
|
5
setup.py
5
setup.py
|
@ -3,13 +3,16 @@ import os
|
||||||
from setuptools import find_packages, setup
|
from setuptools import find_packages, setup
|
||||||
|
|
||||||
|
|
||||||
|
# Dynamically calculate the version
|
||||||
|
version = __import__('musician').get_version()
|
||||||
|
|
||||||
# allow setup.py to be run from any path
|
# allow setup.py to be run from any path
|
||||||
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
|
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
|
||||||
|
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name="django-musician",
|
name="django-musician",
|
||||||
version="0.1",
|
version=version,
|
||||||
url='https://gitlab.pangea.org/slamora/django-musician.git',
|
url='https://gitlab.pangea.org/slamora/django-musician.git',
|
||||||
author='Santiago Lamora',
|
author='Santiago Lamora',
|
||||||
author_email='santiago@ribaguifi.com',
|
author_email='santiago@ribaguifi.com',
|
||||||
|
|
Loading…
Reference in New Issue