Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
W
wax
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
hive
wax
Commits
c9b4f232
Commit
c9b4f232
authored
3 months ago
by
Jakub Ziebinski
Committed by
Jakub Ziebinski
1 month ago
Browse files
Options
Downloads
Patches
Plain Diff
Remove setup.py, as poetry generates it automatically
parent
e3cdebfb
No related branches found
No related tags found
1 merge request
!230
Implementation of the python wax interface
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
python/pyproject.toml
+1
-4
1 addition, 4 deletions
python/pyproject.toml
python/setup.py
+0
-27
0 additions, 27 deletions
python/setup.py
with
1 addition
and
31 deletions
python/pyproject.toml
+
1
−
4
View file @
c9b4f232
...
...
@@ -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"
}
,
...
...
This diff is collapsed.
Click to expand it.
python/setup.py
deleted
100644 → 0
+
0
−
27
View file @
e3cdebfb
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]
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment