[Reproducible-commits] [debbindiff] 02/02: Add setup.py

Jérémy Bobbio lunar at moszumanska.debian.org
Tue Sep 30 17:32:00 UTC 2014


This is an automated email from the git hooks/post-receive script.

lunar pushed a commit to branch master
in repository debbindiff.

commit 27a7d0279f52b1404b47c73d4bd9470d54bab1ff
Author: Jérémy Bobbio <lunar at debian.org>
Date:   Tue Sep 30 19:30:34 2014 +0200

    Add setup.py
    
    Thanks to Hans-Christoph Steiner.
---
 .gitignore |  2 ++
 setup.py   | 25 +++++++++++++++++++++++++
 2 files changed, 27 insertions(+)

diff --git a/.gitignore b/.gitignore
index c9834df..0bdc09b 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,2 +1,4 @@
 *.sw[p-z]
 *.pyc
+/debbindiff.egg-info/
+/dist/
diff --git a/setup.py b/setup.py
new file mode 100644
index 0000000..ebbea76
--- /dev/null
+++ b/setup.py
@@ -0,0 +1,25 @@
+#!/usr/bin/env python2
+
+from setuptools import setup, find_packages
+
+setup(name='debbindiff',
+      version='2',
+      description='display differences between files',
+      long_description=open('README').read(),
+      author='Lunar',
+      author_email='lunar at debian.org',
+      url='https://wiki.debian.org/ReproducibleBuilds',
+      packages=find_packages(),
+      scripts=['debbindiff.py'],
+      install_requires=[
+          'python-debian',
+          'magic',
+          ],
+      classifiers=[
+          'Development Status :: 3 - Alpha',
+          'Intended Audience :: Developers',
+          'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
+          'Operating System :: POSIX',
+          'Topic :: Utilities',
+          ],
+      )

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/reproducible/debbindiff.git



More information about the Reproducible-commits mailing list