From 9b05e494a6bc2391bf0cbcbd519d2673a14bb980 Mon Sep 17 00:00:00 2001 From: Adar Nimrod <nimrod@shore.co.il> Date: Sun, 4 Oct 2015 21:44:38 +0300 Subject: [PATCH] Added source directory as git sub-module. Added README.rst. Don't delete pyc files when cleaning. --- .gitmodules | 3 +++ README.rst | 15 +++++++++++++++ fabfile.py | 1 - 3 files changed, 18 insertions(+), 1 deletion(-) create mode 100644 .gitmodules create mode 100644 README.rst diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..9a25588 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "source"] + path = source + url = http://git.videolan.org/git/vlc/bindings/python.git diff --git a/README.rst b/README.rst new file mode 100644 index 0000000..1f435d0 --- /dev/null +++ b/README.rst @@ -0,0 +1,15 @@ +python-vlc +========== + +Python binding for libvlc. + + +todo +---- + +- Add requirements.txt if needed. +- Migrate from fabfile to Makefile (remove git actions). +- Add LGPL v2.1 or later license. +- Add setuptools, make repo pip installable. +- Add testing (unit on different virutal environments, perhaps use tox). +- Investigate better Debian packaging. diff --git a/fabfile.py b/fabfile.py index 3122af7..b23bebf 100644 --- a/fabfile.py +++ b/fabfile.py @@ -21,7 +21,6 @@ def clean (): local ('''rm -r debian/python3-vlc.substvars debian/python3-vlc.prerm.debhelper\ debian/python3-vlc.postinst.debhelper debian/python3-vlc.debhelper.log\ debian/python3-vlc debian/files''') - local ('''rm fabfile.pyc''') @task def push (): -- GitLab