Files
pcp/bindings/py/setup.py

24 lines
734 B
Python
Raw Normal View History

2014-12-14 14:38:30 +01:00
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",
],
)