-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
41 lines (39 loc) · 1.55 KB
/
Copy pathsetup.py
File metadata and controls
41 lines (39 loc) · 1.55 KB
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
36
37
38
39
40
41
from setuptools import setup
import pathlib
HERE = pathlib.Path(__file__).parent
README = (HERE / "README.md").read_text(encoding="utf-8")
setup(
name="valkeyrie",
version="1.0.0",
author="Valkeyrie Team",
author_email="indiser01@gmail.com",
description="A lightweight Redis-compatible Python client for Valkeyrie distributed cache",
long_description=README,
long_description_content_type="text/markdown",
url="https://github.com/Valkeyriee/Valkeyrie",
project_urls={
"Bug Tracker": "https://github.com/Valkeyriee/Valkeyrie/issues",
"Documentation": "https://github.com/Valkeyriee/Valkeyrie",
"Source Code": "https://github.com/Valkeyriee/Valkeyrie",
},
py_modules=["valkeyrie"],
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Database",
"Topic :: System :: Distributed Computing",
],
python_requires=">=3.7",
keywords="cache redis valkeyrie database distributed key-value nosql",
include_package_data=True,
)