forked from elan-ev/bbb-selenium-exporter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
40 lines (38 loc) · 1.23 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
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="bbb-selenium-exporter",
version="0.1.1",
author="Markus Otto",
author_email="[email protected]",
description="Export Prometheus metrics scraped from BigBlueButton servers using Selenium",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://gitlab.com/infra.run/public/bbb-selenium-exporter",
install_requires=[
"mpipe",
"pillow",
"prometheus-client",
"requests",
"selenium",
"trio",
"idna==2.10",
],
packages=setuptools.find_packages(),
package_data={"": ["assets/*.pdf"]},
include_package_data=True,
entry_points={
"console_scripts": [
"bbb-selenium-exporter=bbb_selenium_exporter.server:main",
],
},
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
],
python_requires='>=3.6',
)