mirror of
https://github.com/capnproto/pycapnp.git
synced 2025-03-04 08:24:43 +01:00
Setup repo for pypi
This commit is contained in:
parent
06f25852bc
commit
1491e24585
2 changed files with 12 additions and 2 deletions
2
setup.cfg
Normal file
2
setup.cfg
Normal file
|
@ -0,0 +1,2 @@
|
|||
[metadata]
|
||||
description-file = README.md
|
12
setup.py
12
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 = [],
|
||||
)
|
||||
|
|
Loading…
Add table
Reference in a new issue