forked from pynamodb/PynamoDB
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
42 lines (38 loc) · 1.18 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
40
41
42
import os
import sys
from setuptools import setup, find_packages
if sys.argv[-1] == 'publish':
os.system('python setup.py sdist upload')
os.system('python setup.py bdist_wheel upload')
print("Now tag me :)")
print(" git tag -a {0} -m 'version {0}'".format(__import__('pynamodb').__version__))
print(" git push --tags")
sys.exit()
install_requires = [
'Delorean',
'six',
'botocore>=1.0.0'
]
setup(
name='pynamodb',
version=__import__('pynamodb').__version__,
packages=find_packages(),
url='http://jlafon.io/pynamodb.html',
author='Jharrod LaFon',
author_email='[email protected]',
description='A Pythonic Interface to DynamoDB',
long_description=open('README.rst').read(),
zip_safe=False,
license='MIT',
keywords='python dynamodb amazon',
install_requires=install_requires,
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Programming Language :: Python',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'License :: OSI Approved :: MIT License',
],
)