-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
28 lines (27 loc) · 932 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
setup(
name = 'cc_dynamodb3',
packages=find_packages(),
install_requires=[
'munch>=2.5.0',
'boto3>=1.2.2',
'PyYAML>=3.10',
'schematics==1.1.1',
],
tests_require=['pytest', 'mock', 'factory_boy', 'moto'],
version = '0.6.16',
description = 'A dynamodb common configuration abstraction',
author='Paul Craciunoiu',
author_email='[email protected]',
url='https://github.com/clearcare/cc_dynamodb3',
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Operating System :: OS Independent',
'Development Status :: 1 - Planning',
'Environment :: Console',
'Intended Audience :: Developers',
'Topic :: System :: Distributed Computing',
]
)