Skip to content

Commit 755670d

Browse files
committed
feat: pip setup
1 parent f73203a commit 755670d

File tree

3 files changed

+32
-4
lines changed

3 files changed

+32
-4
lines changed

pyproject.toml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
[build-system]
2+
requires = [
3+
"setuptools>=42",
4+
"wheel"
5+
]
6+
build-backend = "setuptools.build_meta"

requirements.txt

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
1-
cloud-files
21
grpcio>=1.36.1
32
certifi>=2020.12.5
3+
google-cloud-bigtable
44
numpy
5-
pandas
6-
scikit-learn
75
multiwrapper
86
zstandard
97
codecov
10-
google-cloud-bigtable
8+

setup.cfg

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
[metadata]
2+
name = KVDbClient
3+
version = 0.1.0
4+
author = Akhilesh Halageri
5+
author_email = halageri@princeton.edu
6+
description = Client for key value databases
7+
long_description = file: README.md
8+
long_description_content_type = text/markdown
9+
url = https://github.com/seung-lab/KVDbClient
10+
project_urls =
11+
Bug Tracker = https://github.com/seung-lab/KVDbClient/issues
12+
classifiers =
13+
Programming Language :: Python :: 3
14+
License :: OSI Approved :: MIT License
15+
Operating System :: OS Independent
16+
17+
[options]
18+
package_dir =
19+
= KVDbClient
20+
packages = find:
21+
python_requires = >=3.7
22+
23+
[options.packages.find]
24+
where = KVDbClient

0 commit comments

Comments
 (0)