Small updates for PyPi

This commit is contained in:
Jacob Alexander
2019-10-21 00:03:41 -07:00
parent c930b3cddc
commit c1cba47346
3 changed files with 21 additions and 2 deletions

16
Pipfile Normal file
View File

@@ -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"

2
setup.cfg Normal file
View File

@@ -0,0 +1,2 @@
[metadata]
description-file = README.md

View File

@@ -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',