gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] [gnunet-python] branch master updated (00c69d9 -> 647611a)


From: gnunet
Subject: [GNUnet-SVN] [gnunet-python] branch master updated (00c69d9 -> 647611a)
Date: Fri, 01 Dec 2017 22:41:11 +0100

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

ng0 pushed a change to branch master
in repository gnunet-python.

    from 00c69d9  PEP
     new ce2e724  init setup.py
     new 647611a  THANKS file

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 THANKS   |  1 +
 setup.py | 37 +++++++++++++++++++++++++++++++++++++
 2 files changed, 38 insertions(+)
 create mode 100644 THANKS
 create mode 100644 setup.py

diff --git a/THANKS b/THANKS
new file mode 100644
index 0000000..c611ec9
--- /dev/null
+++ b/THANKS
@@ -0,0 +1 @@
+Original author: Andrew Cann <address@hidden>
diff --git a/setup.py b/setup.py
new file mode 100644
index 0000000..d6f41e9
--- /dev/null
+++ b/setup.py
@@ -0,0 +1,37 @@
+#!/bin/env/python
+try:
+    from setuptools import setup
+except ImportError:
+    from distutils.core import setup
+
+setup(
+    name="gnunet",
+    version="0.0",
+
+    packages=['gnunet'],
+    install_requires=['dbus', 'PyGObject'],
+
+    # Maybe this should just be GNUnet eV.
+    author="ng0",
+    author_email="address@hidden",
+    description="Python bindings for GNUnet",
+    license="GNU GPLv3+",
+    keywords="GNUnet binding p2p",
+    url="https://gnunet.org";,
+    long_description="""GNUnet is an alternative network stack for building 
secure, decentralized and privacy-preserving distributed applications. Our goal 
is to replace the old insecure Internet protocol stack. Starting from an 
application for secure publication of files, it has grown to include all kinds 
of basic protocol components and applications towards the creation of a GNU 
internet.
+
+GNUnet is an official GNU package.
+
+This Python module provides Python bindings to GNUnet.""",
+
+    classifiers=['Development Status :: 3 - Alpha',
+                 'Intended Audience :: Developers',
+                'License :: OSI Approved :: GNU General Public License (GPL)',
+                'Operating System :: OS Independent',
+                'Operating System :: MacOS :: MacOS X',
+                'Operating System :: Microsoft :: Windows',
+                'Operating System :: POSIX'],
+
+    platforms=['windows', 'Linux', 'MacOS X', 'Solaris', 'FreeBSD'],
+
+)

-- 
To stop receiving notification emails like this one, please contact
address@hidden



reply via email to

[Prev in Thread] Current Thread [Next in Thread]