This repository was archived by the owner on Jan 30, 2021. It is now read-only.
forked from stevearc/dynamo3
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
62 lines (53 loc) · 1.74 KB
/
setup.py
File metadata and controls
62 lines (53 loc) · 1.74 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
""" Setup file """
import os
import sys
from setuptools import setup, find_packages
HERE = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(HERE, 'README.rst')) as f:
README = f.read()
with open(os.path.join(HERE, 'CHANGES.rst')) as f:
CHANGES = f.read()
REQUIREMENTS = [
'botocore>=0.89.0',
'six',
]
TEST_REQUIREMENTS = [
'nose',
'mock',
]
if sys.version_info[:2] < (2, 7):
TEST_REQUIREMENTS.append('unittest2')
if __name__ == "__main__":
setup(
name='dynamo3',
version='0.4.0',
description='Python 3 compatible library for DynamoDB',
long_description=README + '\n\n' + CHANGES,
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
],
author='Steven Arcangeli',
author_email='stevearc@stevearc.com',
url='http://github.com/stevearc/dynamo3',
keywords='aws dynamo dynamodb',
include_package_data=True,
packages=find_packages(exclude=('tests',)),
license='MIT',
entry_points={
'nose.plugins': [
'dynamolocal=dynamo3.testing:DynamoLocalPlugin',
],
},
install_requires=REQUIREMENTS,
tests_require=REQUIREMENTS + TEST_REQUIREMENTS,
)