-
Notifications
You must be signed in to change notification settings - Fork 24
/
setup.py
56 lines (49 loc) · 1.65 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
import os
from setuptools import find_packages, setup
def get_version():
basedir = os.path.dirname(__file__)
with open(os.path.join(basedir, "rqmonitor/version.py")) as f:
locals = {}
exec(f.read(), locals)
return locals["VERSION"]
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="rqmonitor",
version=get_version(),
author="Pranav Gupta",
author_email="[email protected]",
description="Flask based dynamic and actionable dashboard for monitoring RQs",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/pranavgupta1234/rqmonitor",
download_url="https://github.com/pranavgupta1234/rqmonitor/archive/v_{0}.tar.gz".format(
get_version()
),
license="Apache Software License",
packages=find_packages(exclude=("tests",)),
include_package_data=True,
zip_safe=False,
platforms="any",
install_requires=[
"redis>=3.3.11",
"humanize>=2.4.0",
"Flask>=1.1.1",
"Click>=7.0",
"six>=1.13.0",
"Werkzeug>=0.16.0",
"rq>=1.4.0",
"fabric>=2.5.0",
"invoke>=1.4.1",
],
entry_points={"console_scripts": ["rqmonitor = rqmonitor.cli:main"]},
classifiers=[
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
)