-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4 from lukas-bednar/versioning
Setup semantic versioning
- Loading branch information
Showing
3 changed files
with
30 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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, | ||
) |