mirror of
https://github.com/OneUptime/oneuptime.git
synced 2026-01-16 23:00:51 +00:00
30 lines
No EOL
956 B
Python
30 lines
No EOL
956 B
Python
import pathlib
|
|
from setuptools import setup
|
|
|
|
# The directory containing this file
|
|
HERE = pathlib.Path(__file__).parent
|
|
|
|
# The text of the README file
|
|
README = (HERE / "README.rst").read_text()
|
|
|
|
setup(
|
|
name="fyipe_sdk", # Replace with your own username
|
|
version="1.0.0",
|
|
author="HackerBay, Inc.",
|
|
author_email="hello@hackerbay.io",
|
|
description="A Fyipe package that tracks error event and send logs from your applications to your fyipe dashboard.",
|
|
long_description=README,
|
|
long_description_content_type="text/x-rst",
|
|
url="https://github.com/Fyipe/python-sdk",
|
|
project_urls={
|
|
"Bug Tracker": "https://github.com/Fyipe/python-sdk/issues",
|
|
},
|
|
classifiers=[
|
|
"Programming Language :: Python :: 3",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Operating System :: OS Independent",
|
|
],
|
|
packages=["fyipe_sdk"],
|
|
python_requires=">=3.6",
|
|
install_requires=["requests", "faker"],
|
|
) |