mirror of
https://github.com/OneUptime/oneuptime.git
synced 2026-04-06 00:32:12 +02:00
config update
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
[build-system]
|
||||
requires = [
|
||||
"setuptools>=42",
|
||||
"wheel"
|
||||
]
|
||||
build-backend = "setuptools.build_meta"
|
||||
@@ -1,5 +1,5 @@
|
||||
[metadata]
|
||||
name = example-pkg-fyipe
|
||||
name = sdk-pkg-fyipe
|
||||
version = 0.0.1
|
||||
author =HackerBay, Inc.
|
||||
author_email = hello@hackerbay.io
|
||||
|
||||
@@ -1,6 +1,26 @@
|
||||
[build-system]
|
||||
requires = [
|
||||
"setuptools>=42",
|
||||
"wheel"
|
||||
]
|
||||
build-backend = "setuptools.build_meta"
|
||||
import setuptools
|
||||
|
||||
with open("README.md", "r", encoding="utf-8") as fh:
|
||||
long_description = fh.read()
|
||||
|
||||
setuptools.setup(
|
||||
name="sdk-pkg-fyipe", # Replace with your own username
|
||||
version="0.0.1",
|
||||
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=long_description,
|
||||
long_description_content_type="text/markdown",
|
||||
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",
|
||||
],
|
||||
package_dir={"": "src"},
|
||||
packages=setuptools.find_packages(where="src"),
|
||||
python_requires=">=3.6",
|
||||
)
|
||||
Reference in New Issue
Block a user