BmnRoot
Loading...
Searching...
No Matches
setup.py
Go to the documentation of this file.
1import setuptools
2
3with open("README.md", "r") as fh:
4 long_description = fh.read()
5
6setuptools.setup(
7 name="mon-service",
8 version="0.0.1",
9 author="Peter Klimai",
10 author_email="pklimai@gmail.com",
11 description="Script to monitor PostgreSQL database server",
12 long_description=long_description,
13 long_description_content_type="text/markdown",
14 # url="",
15 packages=setuptools.find_packages(),
16 install_requires=['psycopg2-binary', 'influxdb'],
17 scripts=['mon-service.py'],
18 classifiers=[
19 "Programming Language :: Python :: 3",
20 "License :: OSI Approved :: MIT License",
21 "Operating System :: Linux",
22 ],
23 python_requires='>=3.5',
24)