-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
28 lines (27 loc) · 1.04 KB
/
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
from setuptools import setup
setup(
name="rethinkdb_mock",
zip_safe=True,
version='0.11.0-dev1',
description="A pure-python in-memory mock of rethinkdb (formerly MockThink)",
url="https://github.com/Inveracity/rethinkdb-mock",
maintainer="Christopher Baklid",
maintainer_email="cbaklid@gmail.com",
packages=["rethinkdb_mock"],
package_dir={"rethinkdb_mock": "rethinkdb_mock"},
install_requires=["rethinkdb>=2.4.8", "python-dateutil", "future"],
classifiers=[
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Database",
"Topic :: Software Development :: Testing :: Mocking",
],
python_requires=">=3.8",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
)