trying to tweak setup and py version attributes to not cause merging conflicts
--HG-- branch : 1.0.x
This commit is contained in:
parent
142d53acfc
commit
64a5075545
|
@ -18,8 +18,9 @@ For questions please check out http://pylib.org/contact.html
|
||||||
|
|
||||||
"""
|
"""
|
||||||
from initpkg import initpkg
|
from initpkg import initpkg
|
||||||
|
trunk = None
|
||||||
|
|
||||||
version = "1.0.0b8"
|
version = trunk or "1.0.0b8"
|
||||||
|
|
||||||
initpkg(__name__,
|
initpkg(__name__,
|
||||||
description = "py.test and pylib: advanced testing tool and networking lib",
|
description = "py.test and pylib: advanced testing tool and networking lib",
|
||||||
|
|
3
setup.py
3
setup.py
|
@ -25,12 +25,13 @@ For questions please check out http://pylib.org/contact.html
|
||||||
|
|
||||||
|
|
||||||
"""
|
"""
|
||||||
|
trunk = None
|
||||||
def main():
|
def main():
|
||||||
setup(
|
setup(
|
||||||
name='py',
|
name='py',
|
||||||
description='py.test and pylib: advanced testing tool and networking lib',
|
description='py.test and pylib: advanced testing tool and networking lib',
|
||||||
long_description = long_description,
|
long_description = long_description,
|
||||||
version='1.0.0b8',
|
version= trunk or '1.0.0b8',
|
||||||
url='http://pylib.org',
|
url='http://pylib.org',
|
||||||
license='MIT license',
|
license='MIT license',
|
||||||
platforms=['unix', 'linux', 'osx', 'cygwin', 'win32'],
|
platforms=['unix', 'linux', 'osx', 'cygwin', 'win32'],
|
||||||
|
|
Loading…
Reference in New Issue