forked from NerdWalletOSS/dynamorm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
39 lines (34 loc) · 1.03 KB
/
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
35
36
37
38
39
from setuptools import setup
with open('README.rst', 'r') as readme_fd:
long_description = readme_fd.read()
setup(
name='dynamallow',
version='0.0.2',
description='Python ORM style interface to Amazon (AWS) DynamoDB using Schematics or Marshmallow for Schema validation',
long_description=long_description,
author='Evan Borgstrom',
author_email='[email protected]',
url='https://github.com/borgstrom/dynamallow',
license='Apache License Version 2.0',
setup_requires=[
'pytest-runner',
],
install_requires=[
'boto3>=1.3,<1.4',
'pytest>=2.9,<3.0',
'six',
],
packages=[
'dynamallow',
],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Programming Language :: Python',
'Topic :: Database',
'Topic :: Internet',
'Topic :: Software Development :: Libraries'
]
)