Skip to content

Commit f81e15b

Browse files
committed
Change name so as to not conflict with the HTTP bindings
1 parent 1400341 commit f81e15b

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

setup.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
from setuptools import setup
22
setup(
3-
name = 'btrdb',
4-
packages = ['btrdb'],
3+
name = 'btrdbcapnp',
4+
packages = ['btrdbcapnp'],
55
version = '1.0',
6-
description = 'Bindings to interact with the Berkeley Tree Database',
6+
description = "Bindings to interact with the Berkeley Tree Database using the Cap'n Proto Interface",
77
author = 'Sam Kumar, Michael P Andersen',
88
author_email = 'samkumar99@gmail.com, michael@steelcode.com',
99
url = 'https://github.com/SoftwareDefinedBuildings/btrdb-python',
1010
download_url = 'https://github.com/SoftwareDefinedBuildings/btrdb-python/tarball/1.0',
11-
package_data = { 'btrdb': ['interface.capnp'] },
11+
package_data = { 'btrdbcapnp': ['interface.capnp'] },
1212
include_package_data = True,
1313
install_requires = ["pycapnp >= 0.5.8"],
14-
keywords = ['btrdb', 'timeseries', 'database'],
14+
keywords = ['btrdb', 'timeseries', 'database', 'capn', 'capnp', "Cap'n Proto"],
1515
classifiers = []
1616
)

0 commit comments

Comments
 (0)