forked from ybrs/single-beat
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·30 lines (28 loc) · 779 Bytes
/
Copy pathsetup.py
File metadata and controls
executable file
·30 lines (28 loc) · 779 Bytes
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
from setuptools import setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='single-beat',
version='0.4.1',
long_description=long_description,
long_description_content_type="text/markdown",
description='ensures only one instance of your process across your servers',
url='https://github.com/ybrs/single-beat',
packages=['singlebeat'],
zip_safe=True,
install_requires=[
'tornado>=4.2.1,<6.0',
'redis >= 2.9.1',
'tornadis>=0.8.1',
'Click>=7.0'
],
test_require=[
'psutil>=5.2.2'
],
entry_points={
'console_scripts': [
'single-beat = singlebeat.beat:run_process',
'single-beat-cli = singlebeat.cli:main',
],
}
)