-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (31 loc) · 976 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
"""
Setup project and PyPi package
"""
from setuptools import setup, find_packages
from pathlib import Path
import os
# read the contents of your README file
directory = Path(__file__).parent
setup(
name="dory-cache",
version=os.getenv("VERSION"),
license="MIT",
author="Sören Rifé",
author_email="[email protected]",
long_description=(directory / "README.md").read_text(),
long_description_content_type="text/markdown",
packages=find_packages("dory"),
package_dir={"": "dory"},
python_requires=">=3.8",
url="https://github.com/sorenrife/dory",
keywords="dory smart cache",
install_requires=["redis==4.4.0"],
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
)