-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
43 lines (39 loc) · 1.32 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
import os
from setuptools import setup
def read(filename):
return open(os.path.join(os.path.dirname(__file__), filename)).read()
setup(
name="page-monitor",
version="0.4.1",
author="MarcDufresne",
author_email="[email protected]",
description="Simple Python based Page monitoring with "
"JS support and notifications",
long_description=read("README.md"),
long_description_content_type='text/markdown',
license="MIT",
keywords="page-monitor monitoring website-monitor "
"email telegram-messages mailgun smtp telegram",
url="https://github.com/MarcDufresne/page-monitor",
packages=["page_monitor"],
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Unix",
"Programming Language :: Python :: 3.6",
"Topic :: Internet",
"Topic :: Utilities"
],
include_package_data=True,
zip_safe=True,
install_requires=read("requirements.txt"),
entry_points={
"console_scripts": [
"page_monitor = page_monitor.monitor:run_monitor"
]
}
)