aboutsummaryrefslogtreecommitdiff
path: root/setup.py
blob: 2d7b91eb749c084ee3e236fe4fc5e76146785c32 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#!/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-python'],
    # We require PyGObject (pygobject) but would have to
    # pass a URL to pip3 for that, as it is not on pypi.

    # Maybe this should just be GNUnet eV.
    author="ng0",
    author_email="ng0@gnunet.org",
    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'],

)