-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
57 lines (53 loc) · 2.02 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# This file is part of restful-distributed-lock-manager released under the MIT license.
# See the LICENSE file for more information.
from setuptools import setup, find_packages
import rdlm
DESCRIPTION = "RDLM (Restful Distributed Lock Manager) is a lock manager "
DESCRIPTION = DESCRIPTION + "over HTTP build on Tornado"
try:
with open('PIP.rst') as f:
LONG_DESCRIPTION = f.read()
except IOError:
LONG_DESCRIPTION = DESCRIPTION
with open('pip-requirements.txt') as reqs:
install_requires = [
line for line in reqs.read().split('\n') if (line and not
line.startswith('--'))]
setup(
name='rdlm',
version=rdlm.__version__,
author="Fabien MARTY",
author_email="[email protected]",
url="https://github.com/thefab/restful-distributed-lock-manager",
packages=find_packages(),
license='MIT',
download_url='https://github.com/thefab/restful-distributed-lock-manager',
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
scripts=["rdlm-daemon.py"],
install_requires=install_requires,
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT License',
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX',
'Operating System :: Unix',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Topic :: Utilities',
'Topic :: System :: Distributed Computing',
'Topic :: Software Development',
'Topic :: Internet :: WWW/HTTP :: HTTP Servers',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content'
]
)