forked from 17zuoye/model_cache
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (30 loc) · 877 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
from setuptools import setup
setup(
name='model_cache',
version='0.1.1',
url='http://github.com/17zuoye/model_cache/',
license='MIT',
author='David Chen',
author_email=''.join(reversed("moc.liamg@emojvm")),
description='model_cache',
long_description='model_cache',
packages=['model_cache',
'model_cache/storage',
'model_cache/tools',
'model_cache/tests', ],
include_package_data=True,
zip_safe=False,
platforms='any',
install_requires=[
'redis_collections',
'sqlitedict',
'etl_utils',
'forwardable.py == 0.0.11',
],
classifiers=[
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules'
],
)