From 1491e24585785d3ad9882ec43bf909532a46d484 Mon Sep 17 00:00:00 2001 From: Jason Paryani Date: Mon, 12 Aug 2013 11:56:44 -0700 Subject: [PATCH] Setup repo for pypi --- setup.cfg | 2 ++ setup.py | 12 ++++++++++-- 2 files changed, 12 insertions(+), 2 deletions(-) create mode 100644 setup.cfg diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..224a779 --- /dev/null +++ b/setup.cfg @@ -0,0 +1,2 @@ +[metadata] +description-file = README.md \ No newline at end of file diff --git a/setup.py b/setup.py index f0d4773..38f005d 100644 --- a/setup.py +++ b/setup.py @@ -35,8 +35,16 @@ write_version_py() setup( name="capnp", - version=VERSION, packages=["capnp"], + version=VERSION, package_data={'capnp': ['*.pxd']}, - ext_modules=cythonize('capnp/*.pyx') + ext_modules=cythonize('capnp/*.pyx'), + # PyPi info + description="A cython wrapping of the C++ capnproto library", + author="Jason Paryani", + author_email="pypi-contact@jparyani.com", + url = 'https://github.com/jparyani/capnpc-python-cpp', + download_url = 'https://github.com/jparyani/capnpc-python-cpp/archive/v0.2.zip', + keywords = ['testing', 'logging', 'example'], # arbitrary keywords + classifiers = [], )