-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (32 loc) · 944 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# coding: utf-8
import os
from setuptools import setup, find_packages
# Directory containing this file
CONTAINING_DIR = os.path.abspath(os.path.dirname(__file__))
with open("README.md") as f:
README_MD = f.read()
setup(
name="tiledb-cloud-pythondb",
version='0.0.1',
long_description=README_MD,
packages=find_packages(),
long_description_content_type="text/markdown",
author="TileDB, Inc.",
author_email="[email protected]",
maintainer="TileDB, Inc.",
maintainer_email="[email protected]",
description="TileDB Connector for Python DB API 2.0",
url="https://tiledb.io",
keywords=["TileDB", "cloud", "python"],
install_requires=[
"pandas",
"tiledb-cloud",
"pyarrow>=7.0.0"
],
license="MIT",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)