File tree Expand file tree Collapse file tree 2 files changed +16
-8
lines changed Expand file tree Collapse file tree 2 files changed +16
-8
lines changed Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change 1
1
#!/usr/bin/env python3
2
2
3
- from setuptools import setup , find_packages
3
+ from setuptools import setup
4
4
5
5
with open ('README.rst' ) as f :
6
6
readme = f .read ()
7
7
8
8
setup (
9
9
name = "pydbus" ,
10
- version = "0.5.1 " ,
10
+ version = "0.6.0 " ,
11
11
description = "Pythonic DBus library" ,
12
12
long_description = readme ,
13
- author = "Janusz Lewandowski" ,
14
- author_email = "[email protected] " ,
13
+ author = "Linus Lewandowski" ,
14
+ author_email = "[email protected] " ,
15
15
url = "https://github.com/LEW21/pydbus" ,
16
16
keywords = "dbus" ,
17
17
license = "LGPLv2+" ,
18
18
19
- packages = find_packages (),
20
- package_data = {
21
- '' : ['LICENSE, *.rst' ],
22
- },
19
+ packages = ["pydbus" ],
20
+ package_data = {"" : ["LICENSE" ]},
21
+ package_dir = {"pydbus" : "pydbus" },
23
22
zip_safe = True ,
24
23
classifiers = [
25
24
'Development Status :: 5 - Production/Stable' ,
You can’t perform that action at this time.
0 commit comments