Skip to content

Commit

Permalink
Merge pull request #4 from lukas-bednar/versioning
Browse files Browse the repository at this point in the history
Setup semantic versioning
  • Loading branch information
lukas-bednar committed Apr 12, 2016
2 parents c9f97bb + c7c5376 commit 2efb127
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 31 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ var/
*.egg-info/
.installed.cfg
*.egg
ChangeLog
AUTHORS

# PyInstaller
# Usually these files are written by a python script from a template
Expand Down
24 changes: 23 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,2 +1,24 @@
[metadata]
name=python-otopi-mdp
author=Lukas Bednar
author_email[email protected]
summary=Implements parser for otopi machine dialog.
description-file=README.md
license=GPLv2
keywords=
otopi
machine
dialog
home-page=https://github.com/rhevm-qe-automation/python-otopi-mdp
classifier=
Development Status :: 3 - Alpha
Topic :: Utilities
License :: OSI Approved :: GNU General Public License v2 (GPLv2)
Operating System :: POSIX
Programming Language :: Python
[files]
packages=
otopimdp
[bdist_rpm]
requires = otopi
requires=
otopi
35 changes: 5 additions & 30 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,33 +1,8 @@
import os
from setuptools import setup

def read(fname):
return open(
os.path.abspath(
os.path.join(
os.path.dirname(__file__), fname,
)
)
).read()

setup(
name="otopi-mdp",
version="0.1",
author="Lukas Bednar",
author_email="[email protected]",
description="Implements parser for otopi machine dialog.",
license="GPL2",
keywords="otopi machine dialog",
url="https://github.com/rhevm-qe-automation/python-otopi-mdp",
platforms=['linux'],
packages=['otopimdp'],
long_description=read('README.md'),
# install_requires=['otopi'], # It fails tests
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Utilities",
"License :: OSI Approved :: GNU General Public License 2 (GPL2)",
"Operating System :: POSIX",
"Programming Language :: Python",
],
)
if __name__ == "__main__":
setup(
setup_requires=['pbr'],
pbr=True,
)

0 comments on commit 2efb127

Please sign in to comment.