From c1cba4734654bc3600b3d477cea74e80e8784a1a Mon Sep 17 00:00:00 2001 From: Jacob Alexander Date: Mon, 21 Oct 2019 00:03:41 -0700 Subject: [PATCH] Small updates for PyPi --- Pipfile | 16 ++++++++++++++++ setup.cfg | 2 ++ setup.py | 5 +++-- 3 files changed, 21 insertions(+), 2 deletions(-) create mode 100644 Pipfile create mode 100644 setup.cfg diff --git a/Pipfile b/Pipfile new file mode 100644 index 0000000..616bfe4 --- /dev/null +++ b/Pipfile @@ -0,0 +1,16 @@ +[[source]] +name = "pypi" +url = "https://pypi.org/simple" +verify_ssl = true + +[dev-packages] +pypandoc = "*" + +[packages] +pytest = "*" +tox = "*" +Jinja2 = "*" +Cython = "*" + +[requires] +python_version = "3.7" diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..b88034e --- /dev/null +++ b/setup.cfg @@ -0,0 +1,2 @@ +[metadata] +description-file = README.md diff --git a/setup.py b/setup.py index db57b62..4e2f100 100644 --- a/setup.py +++ b/setup.py @@ -195,19 +195,20 @@ setup( 'console_scripts' : ['capnpc-cython = capnp._gen:main'] }, # PyPi info - description="A cython wrapping of the C++ Cap'n Proto library", + description="A cython wrapping of the C++ Cap'n Proto library with support for asyncio", long_description=long_description, license='BSD', author="Jacob Alexander", author_email="haata@kiibohd.com", url='https://github.com/haata/pycapnp-async', download_url='https://github.com/haata/pycapnp-async/archive/v%s.zip' % VERSION, - keywords=['capnp', 'capnproto', "Cap'n Proto"], + keywords=['capnp', 'capnproto', "Cap'n Proto", 'pycapnp', 'pycapnp-async'], classifiers=[ 'Development Status :: 4 - Beta', 'Intended Audience :: Developers', 'License :: OSI Approved :: BSD License', 'Operating System :: MacOS :: MacOS X', + 'Operating System :: Microsoft :: Windows :: Windows 10', 'Operating System :: POSIX', 'Programming Language :: C++', 'Programming Language :: Cython',