forked from BTrDB/btrdb-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
16 lines (16 loc) · 736 Bytes
/
setup.py
File metadata and controls
16 lines (16 loc) · 736 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
from setuptools import setup
setup(
name = 'btrdb4',
packages = ['btrdb4'],
version = '4.4.5',
description = "Bindings to interact with the Berkeley Tree Database using gRPC",
author = 'Sam Kumar, Michael P Andersen',
url = 'https://github.com/SoftwareDefinedBuildings/btrdb4-python',
download_url = 'https://github.com/SoftwareDefinedBuildings/btrdb4-python/tarball/0.0.1',
package_data = { 'btrdb4': ['grpcinterface/btrdb.proto'] },
include_package_data = False,
install_requires = ["grpcio >= 1.1.3", "grpcio-tools >= 1.1.3", "isodate >= 0.5.4"],
keywords = ['btrdb', 'berkeley', 'timeseries', 'database', 'bindings' 'gRPC'],
classifiers = []
)