mirror of
https://git.centos.org/centos/centpkg.git
synced 2025-02-23 16:22:55 +00:00
setup: use the __version__ attribute to set the version in setup.py
Conflicts: setup.py
This commit is contained in:
parent
05c687c5f4
commit
d60709c4b1
2 changed files with 3 additions and 3 deletions
4
setup.py
4
setup.py
|
@ -1,8 +1,8 @@
|
|||
from setuptools import setup
|
||||
|
||||
from centpkg import __version__
|
||||
setup(
|
||||
name = "centpkg",
|
||||
version = "0.4.4",
|
||||
version = __version__,
|
||||
author = "Brian Stinson",
|
||||
author_email = "bstinson@ksu.edu",
|
||||
description = "CentOS Plugin to rpkg for managing RPM package sources",
|
||||
|
|
|
@ -25,7 +25,7 @@ from pyrpkg import Commands, rpkgError
|
|||
from centos import centos_cert
|
||||
from . import cli
|
||||
|
||||
__version__ = '0.5.0'
|
||||
__version__ = '0.4.5'
|
||||
|
||||
class DistGitDirectory(object):
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue