config update

This commit is contained in:
Zadat Olayinka
2021-04-15 16:28:00 +01:00
parent 101f3bc55a
commit 45b094e83b
3 changed files with 33 additions and 7 deletions

View File

@@ -0,0 +1,6 @@
[build-system]
requires = [
"setuptools>=42",
"wheel"
]
build-backend = "setuptools.build_meta"

View File

@@ -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

View File

@@ -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",
)