-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
28 lines (20 loc) · 902 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
from setuptools import setup, find_packages
with open("README.md", "r") as readme_file:
readme_text = readme_file.read()
setup_args = dict(
name='omoide-cache',
version='0.1.3',
description="Robust, highly tunable and easy-to-integrate in-memory cache solution written in pure Python, with no dependencies.",
keywords=['cache', 'decorator', 'annotation', 'in-memory'],
license='Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International Public License',
long_description=readme_text,
long_description_content_type="text/markdown",
packages=find_packages(),
author="Leo Ertuna",
author_email="[email protected]",
url="https://github.com/jpleorx/omoide-cache",
download_url='https://pypi.org/project/omoide-cache/'
)
install_requires = []
if __name__ == '__main__':
setup(**setup_args, install_requires=install_requires)