From 5a268c0f6646ffb89cd19fe46993bc73221484e4 Mon Sep 17 00:00:00 2001 Message-Id: <5a268c0f6646ffb89cd19fe46993bc73221484e4.1714801527.git.mdw@distorted.org.uk> From: Mark Wooding Date: Sat, 15 Jun 2013 23:17:06 +0100 Subject: [PATCH] MANIFEST.in: Rewrite it because it was missing things. Organization: Straylight/Edgeware From: Mark Wooding --- MANIFEST.in | 44 +++++++++++++++++++++++++++++++++++++------- 1 file changed, 37 insertions(+), 7 deletions(-) diff --git a/MANIFEST.in b/MANIFEST.in index 43e5919..ddfe10a 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,8 +1,38 @@ -include COPYING RELEASE auto-version mdwsetup.py pysetup.mk -include mLib.pyx defs.pxi utils.pyx -include codec.pyx.in grim.h atom.h array.h atom-base.c array.c Makefile -include lbuf.pyx pkbuf.pyx mapping.pyx mdup.pyx -include atom.pyx crc32.pyx report.pyx sym.pyx assoc.pyx unihash.pyx -include sel-base.pyx sel-file.pyx sel-timer.pyx conn.pyx -include bres.pyx selbuf.pyx selpk.pyx sig.pyx ident.pyx +### Manifest template for mLib/Python. + +## Generated build machinery. +include COPYING auto-version mdwsetup.py pysetup.mk + +## Basic stuff. +include MANIFEST.in setup.py Makefile mLib.pyx +include defs.pxi grim.h utils.pyx + +## buf +include lbuf.pyx pkbuf.pyx + +## codec +include codec.pyx.in url.pyx + +## hash +include crc32.pyx unihash.pyx + +## sel +include bres.pyx conn.pyx ident.pyx +include sel-base.pyx sel-file.pyx sel-timer.pyx +include selbuf.pyx selpk.pyx sig.pyx + +## struct +include mapping.pyx +include array.h array.c assoc.pyx atom.h atom-base.c atom.pyx sym.pyx + +## sys +include stuff.pyx fdutils.pyx fwatch.pyx mdup.pyx + +## ui +include report.pyx + +## utils +include str.pyx + +## Debian. include debian/rules debian/control debian/changelog debian/copyright -- [mdw]