started with python binding

This commit is contained in:
TLINDEN
2014-12-14 14:38:30 +01:00
parent 6f47b86f98
commit 9e71b84c85
9 changed files with 886 additions and 0 deletions

23
bindings/py/setup.py Normal file
View File

@@ -0,0 +1,23 @@
import os
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = "pypcp",
version = "0.2.3",
author = "Thomas von Dein",
author_email = "tlinden@cpan.org",
description = ("python libpcp wrapper"),
license = "GPL",
keywords = "cryptography API NaCl libpcp",
url = "https://github.com/tlinden/pcp/bindings/py",
packages = find_packages(),
#long_description=read('README.md'),
classifiers = ["Development Status :: 4 - Beta",
"License :: OSI Approved :: GPL",
"Topic :: Security :: Cryptography",
"Topic :: Security",
],
)