gnunet-svn
[Top][All Lists]
Advanced

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

[GNUnet-SVN] [gnunet-python] 01/02: init setup.py


From: gnunet
Subject: [GNUnet-SVN] [gnunet-python] 01/02: init setup.py
Date: Fri, 01 Dec 2017 22:41:12 +0100

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

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

commit ce2e7242115e09d7ca58d734ec718a9d72da7246
Author: ng0 <address@hidden>
AuthorDate: Fri Dec 1 21:35:34 2017 +0000

    init setup.py
---
 setup.py | 37 +++++++++++++++++++++++++++++++++++++
 1 file changed, 37 insertions(+)

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]