mirror of
https://git.freebsd.org/ports.git
synced 2025-06-11 07:40:40 -04:00
A very basic wrapper for libcanberra. Ensure all strings passed to libcanberra are byte strings. WWW: https://github.com/totdb/pycanberra PR: 223565 Submitted by: owen94012@gmail.com
15 lines
410 B
Python
15 lines
410 B
Python
--- setup.py.orig 2017-11-09 11:09:27 UTC
|
|
+++ setup.py
|
|
@@ -0,0 +1,12 @@
|
|
+#!/usr/bin/env python
|
|
+
|
|
+from distutils.core import setup
|
|
+
|
|
+setup(name='pycanberra',
|
|
+ version='1.0',
|
|
+ description='A very basic (and incomplete) wrapper for libcanberra',
|
|
+ author='totdb',
|
|
+ author_email='gward@python.net',
|
|
+ url='https://github.com/totdb/pycanberra',
|
|
+ packages=['pycanberra'],
|
|
+ )
|