-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
42 lines (39 loc) · 1.45 KB
/
setup.py
File metadata and controls
42 lines (39 loc) · 1.45 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
42
from setuptools import setup, find_packages
from pathlib import Path
# Get the directory containing this file
here = Path(__file__).parent.resolve()
# Load the README for long description
long_description = (here / "README.md").read_text(encoding="utf-8")
setup(
name="rememberer",
version="0.1.5",
description="A lightweight tool to help functions remember their previous results using pickle caching.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/ChamRun/rememberer",
author="ChamRun",
author_email="chrm@aut.ac.ir",
license="MIT",
keywords=["pickle", "cache", "memoization", "function caching"],
packages=find_packages(where="src"),
package_dir={"": "src"},
python_requires=">=3.5",
install_requires=[
"pickle5; python_version<'3.8'"
],
project_urls={
"Homepage": "https://chamrun.github.io/",
"Source": "https://github.com/ChamRun/rememberer",
},
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)