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 11#!/usr/bin/env python3
22
3- from setuptools import setup , find_packages
3+ from setuptools import setup
44
55with open ('README.rst' ) as f :
66 readme = f .read ()
77
88setup (
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' ,
You can’t perform that action at this time.
0 commit comments