Skip to content

Commit

Permalink
Release 0.6.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
LEW21 committed Dec 18, 2016
1 parent 8a080ce commit f2e6355
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 8 deletions.
9 changes: 9 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
packages: wheel sdist

wheel:
rm -Rf build
./setup.py bdist_wheel

sdist:
rm -Rf build
./setup.py sdist
15 changes: 7 additions & 8 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,25 +1,24 @@
#!/usr/bin/env python3

from setuptools import setup, find_packages
from setuptools import setup

with open('README.rst') as f:
readme = f.read()

setup(
name = "pydbus",
version = "0.5.1",
version = "0.6.0",
description = "Pythonic DBus library",
long_description = readme,
author = "Janusz Lewandowski",
author_email = "[email protected]",
author = "Linus Lewandowski",
author_email = "[email protected]",
url = "https://github.com/LEW21/pydbus",
keywords = "dbus",
license = "LGPLv2+",

packages = find_packages(),
package_data = {
'': ['LICENSE, *.rst'],
},
packages = ["pydbus"],
package_data = {"": ["LICENSE"]},
package_dir = {"pydbus": "pydbus"},
zip_safe = True,
classifiers = [
'Development Status :: 5 - Production/Stable',
Expand Down

0 comments on commit f2e6355

Please sign in to comment.