-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
28 lines (25 loc) · 908 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 find_packages, setup
with open("requirements.in") as f:
REQUIREMENTS = f.read().splitlines()
with open("test-requirements.in") as f:
TEST_REQUIREMENTS = f.read().splitlines()
setup(
name="kiwi-cache",
version="0.5.0",
url="https://github.com/kiwicom/kiwi-cache",
author="Stanislav Komanec",
author_email="[email protected]",
packages=find_packages(),
install_requires=REQUIREMENTS,
tests_require=TEST_REQUIREMENTS,
description="Cache for using Redis with diverse sources.",
long_description="Redis cache with pythonic dict-like interface just a method away!",
include_package_data=True,
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
],
)