Skip to content

Commit 241efd2

Browse files
committed
Merge pull request #1 from smathot/master
Update setup scripts
2 parents f30ad01 + 506260a commit 241efd2

File tree

3 files changed

+39
-4
lines changed

3 files changed

+39
-4
lines changed

copyright

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
2+
Upstream-Name: python-qnotifications
3+
Source: https://github.com/dschreij/QNotifications
4+
5+
Files: *
6+
Copyright: Copyright 2015-2016 Daniel Schreij <dschreij@gmail.com>
7+
License: GPL-3+
8+
This program is free software; you can redistribute it
9+
and/or modify it under the terms of the GNU General Public
10+
License as published by the Free Software Foundation; either
11+
version 3 of the License, or (at your option) any later
12+
version.
13+
.
14+
This program is distributed in the hope that it will be
15+
useful, but WITHOUT ANY WARRANTY; without even the implied
16+
warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
17+
PURPOSE. See the GNU General Public License for more
18+
details.
19+
.
20+
You should have received a copy of the GNU General Public
21+
License along with this package; if not, write to the Free
22+
Software Foundation, Inc., 51 Franklin St, Fifth Floor,
23+
Boston, MA 02110-1301 USA
24+
.
25+
On Debian systems, the full text of the GNU General Public
26+
License version 3 can be found in the file
27+
`/usr/share/common-licenses/GPL-3'.

setup.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,17 +18,17 @@
1818
along with QNotifications. If not, see <http://www.gnu.org/licenses/>.
1919
"""
2020

21-
from setuptools import setup
21+
from setuptools import setup, find_packages
2222
import QNotifications
2323

2424
setup(
25-
name='QNotifications',
25+
name='python-qnotifications',
2626
version=QNotifications.__version__,
2727
description='Pretty in-app notifications for PyQt',
2828
author='Daniel Schreij',
2929
author_email='dschreij@gmail.com',
3030
url='https://github.com/dschreij/QNotifications',
31-
py_modules=['QNotifications'],
31+
packages=find_packages('.'),
3232
classifiers=[
3333
'Intended Audience :: Developers',
3434
'Topic :: Desktop Environment',
@@ -40,4 +40,4 @@
4040
'Programming Language :: Python :: 2',
4141
'Programming Language :: Python :: 3',
4242
],
43-
)
43+
)

stdeb.cfg

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
[DEFAULT]
2+
Source=python-qnotifications
3+
Package=python-qnotifications
4+
Debian-version=1
5+
Suite=wily
6+
Copyright-File=copyright
7+
Build-Depends=python-qtpy, python-qt4
8+
Depends=python-qtpy, python-qt4

0 commit comments

Comments
 (0)