-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (21 loc) · 809 Bytes
/
setup.py
File metadata and controls
23 lines (21 loc) · 809 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from setuptools import setup
from ddlockclient import __version__ as version
setup(
name = 'DDLockClient',
version = version,
author = 'Satoshi Tanimoto',
author_email = 'tanimoto.satoshi@gmail.com',
description = 'Python client library for the Danga distributed lock daemon',
long_description = open('README.rst').read(),
url = 'http://github.com/stanimoto/python-ddlockclient',
packages = ['ddlockclient'],
license='Apache',
tests_require=['coverage', 'nose', 'unittest2', 'pep8'],
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'License :: OSI Approved :: Apache Software License',
]
)