Skip to content
Snippets Groups Projects
Commit c9b4f232 authored by Jakub Ziebinski's avatar Jakub Ziebinski Committed by Jakub Ziebinski
Browse files

Remove setup.py, as poetry generates it automatically

parent e3cdebfb
No related branches found
No related tags found
1 merge request!230Implementation of the python wax interface
......@@ -14,10 +14,7 @@ version = "0.0.0"
description = ""
repository = "https://gitlab.syncad.com/hive/wax"
authors = []
packages = [
{ include = "wax"},
{ include = "wax/proto" }
]
packages = [{ include = "wax"}]
source = [
{ name = "PyPI", priority = "primary" },
{ name = "gitlab-schemas", url = "https://gitlab.syncad.com/api/v4/projects/362/packages/pypi/simple", priority = "supplemental" },
......
from __future__ import annotations
from setuptools import setup
packages = ["wax", "wax/proto"]
package_data = {"": ["*"]}
setup_kwargs = {
"name": "wax",
"version": "0.0.0",
"description": "Exposes Hive Protocol features to Python",
"long_description": "None",
"author": "None",
"author_email": "None",
"maintainer": "None",
"maintainer_email": "None",
"url": "https://gitlab.syncad.com/hive/wax",
"packages": packages,
"package_data": package_data,
"python_requires": ">=3.10,<4.0",
}
from build import *
build(setup_kwargs)
setup(**setup_kwargs) # type: ignore[arg-type]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment