1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
from setuptools import setup
import hgdistver
setup(
name='hgdistver',
version=hgdistver.get_version(cachefile='hgdistver_version.py'),
author_mail='Ronny Pfannschmidt <Ronny.Pfannschmidt@gmx.de>',
description='utility lib to generate python package version infos from mercurial tags',
long_description=hgdistver.__doc__,
license='MIT',
py_modules=[
'hgdistver',
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Version Control',
'Topic :: System :: Software Distribution',
'Topic :: Utilities',
],
)
|