Skip to content

Commit f2e6355

Browse files
committed
Release 0.6.0.
1 parent 8a080ce commit f2e6355

File tree

2 files changed

+16
-8
lines changed

2 files changed

+16
-8
lines changed

Makefile

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
packages: wheel sdist
2+
3+
wheel:
4+
rm -Rf build
5+
./setup.py bdist_wheel
6+
7+
sdist:
8+
rm -Rf build
9+
./setup.py sdist

setup.py

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,24 @@
11
#!/usr/bin/env python3
22

3-
from setuptools import setup, find_packages
3+
from setuptools import setup
44

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

88
setup(
99
name = "pydbus",
10-
version = "0.5.1",
10+
version = "0.6.0",
1111
description = "Pythonic DBus library",
1212
long_description = readme,
13-
author = "Janusz Lewandowski",
14-
author_email = "[email protected]",
13+
author = "Linus Lewandowski",
14+
author_email = "[email protected]",
1515
url = "https://github.com/LEW21/pydbus",
1616
keywords = "dbus",
1717
license = "LGPLv2+",
1818

19-
packages = find_packages(),
20-
package_data = {
21-
'': ['LICENSE, *.rst'],
22-
},
19+
packages = ["pydbus"],
20+
package_data = {"": ["LICENSE"]},
21+
package_dir = {"pydbus": "pydbus"},
2322
zip_safe = True,
2423
classifiers = [
2524
'Development Status :: 5 - Production/Stable',

0 commit comments

Comments
 (0)