-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
34 lines (32 loc) · 893 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
32
33
34
#!/usr/bin/env python
from setuptools import setup, find_packages
requires = [
'hieratic>=0.0.6',
'six>=1.9.0',
'boto3>=1.4.4',
]
setup(
name='hieratic_dynamodb',
version='0.0.8',
description='dynamodb plugin for hieratic.',
author='Satoshi Ebihara',
author_email='[email protected]',
url='https://github.com/succhiello/hieratic-dynamodb',
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
],
packages=find_packages(),
install_requires=requires,
tests_require=['pytest'],
entry_points={
'hieratic.engine': [
'dynamodb = hieratic_dynamodb',
],
},
)