forked from ravendb/ravendb-python-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (28 loc) · 838 Bytes
/
Copy pathsetup.py
File metadata and controls
29 lines (28 loc) · 838 Bytes
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
from setuptools import setup, find_packages
setup(
name="ravendb",
packages=find_packages(exclude=["*.tests.*", "tests", "*.tests", "tests.*"]),
version="5.2.6",
long_description_content_type="text/markdown",
long_description=open("README_pypi.md").read(),
description="Python client for RavenDB NoSQL Database",
author="RavenDB",
author_email="support@ravendb.net",
url="https://github.com/ravendb/ravendb-python-client",
license="MIT",
keywords=[
"ravendb",
"nosql",
"database" "pyravendb",
],
python_requires="~=3.7",
install_requires=[
"requests >= 2.27.1",
"requests-pkcs12 >= 1.13",
"pyOpenSSL >= 22.0.0",
"ijson ~= 3.2.3",
"websocket-client >= 0.46.0",
"inflect >= 5.4.0",
],
zip_safe=False,
)