-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
36 lines (30 loc) · 924 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
35
36
from setuptools import setup, find_packages
install_requires = [
'PynamoDB==4.1.0',
'aiobotocore==0.10.3',
'async-property==0.2.1'
]
python_requires = '>=3.6'
def version():
with open("VERSION") as f:
return f.read().strip()
setup(
name='InPynamoDB',
version=__import__('inpynamodb').__version__,
packages=find_packages(),
author='sunghyun-lee',
author_email='sunghyunlee@mymusictaste.com',
description='asyncio wrapper of PynamoDB',
zip_safe=False,
license='MIT',
keywords='python dynamodb amazon async pynamodb',
install_requires=install_requires,
classifiers=[
'Development Status :: 1 - Developing',
'Intended Audience :: Developers',
'Programming Language :: Python',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.6',
'License :: OSI Approved :: MIT License',
]
)