Skip to content

Commit

Permalink
Add configurations files to pypi.org.
Browse files Browse the repository at this point in the history
  • Loading branch information
vhsantos committed May 25, 2020
1 parent e9458a1 commit 25a1aa0
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 0 deletions.
12 changes: 12 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
include README.md
include centreon_report_to_pdf/BuildPDF.py
include centreon_report_to_pdf/CentreonData.py
include centreon_report_to_pdf/centreon_report_to_pdf.py
include centreon_report_to_pdf/config_example.ini
include centreon_report_to_pdf/email_body.txt
include centreon_report_to_pdf/GlobalVars.py
include centreon_report_to_pdf/__init__.py
include centreon_report_to_pdf/requirements.txt
include centreon_report_to_pdf/Settings.pyc
include centreon_report_to_pdf/SMTP.py

28 changes: 28 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
from setuptools import setup

with open('README.md') as f:
long_description = f.read()

setup(
name='centreon_report_to_pdf',
packages=['centreon_report_to_pdf'],
version='1.4.0',
description='Generate a PDF from Centreon Dashboard and optional sent it by email',
long_description=long_description,
long_description_content_type="text/markdown",
author='Victor Hugo dos Santos',
author_email='[email protected]',
url='https://github.com/vhsantos/centreon_report_to_pdf',
download_url='https://github.com/vhsantos/centreon_report_to_pdf/archive/v1.4.0.tar.gz',
keywords='centreon report pdf email dashboard',
classifiers = ["Programming Language :: Python :: 3.5",\
"Topic :: System :: Monitoring",\
"Development Status :: 6 - Mature", "Intended Audience :: System Administrators", \
"Operating System :: OS Independent", "Environment :: Console"],
install_requires=[
'reportlab>=3.5',
'pandas>=1.0',
'requests>=2.23',
],
include_package_data = True
)

0 comments on commit 25a1aa0

Please sign in to comment.