-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
32 lines (28 loc) · 1011 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
import os
from setuptools import setup
# allow setup.py to be run from any path
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
README = """
Mutual Exclusion using AWS DynamoDB
"""
setup(
name='dyndbmutex',
version='0.4.1',
license='ASL v2.0',
packages=['dyndbmutex'],
description='Mutual Exclusion using AWS DynamoDB',
long_description=README,
url='https://github.com/chiradeep/dyndb-mutex',
download_url='https://github.com/chiradeep/dyndb-mutex/releases/download/v0.41/dyndbmutex-0.4.1.tar.gz',
author='chiradeep',
author_email='[email protected]',
install_requires=['boto3>=1.9.0'],
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: System :: Distributed Computing'
]
)