mljar / mljar-supervised

Python package for AutoML on Tabular Data with Feature Engineering, Hyper-Parameters Tuning, Explanations and Automatic Documentation
https://mljar.com
MIT License
2.99k stars 400 forks source link

create wheel in pypi with "any" platform #586

Open yairVanti opened 1 year ago

yairVanti commented 1 year ago

my code need to be embedded into 3rd party solution that downloads all my requirements and bundle them. it looks for versions of the packages in the following platforms in pypi : "any", "manylinux1_x86_64", "manylinux2010_x86_64", "manylinux2014_x86_64", "linux_x86_64", "manylinux2014_i686", so no packages are found sine mljar-supervised is not marked with the above platform. https://pypi.org/simple/mljar-supervised/ can the mljar be packaged with "any" platform ?

pplonski commented 1 year ago

Please could you provide PR to fix this?

yairVanti commented 1 year ago

tried, not proficient in creating distributions... i think we only need to add operating systems in setup.py: classifiers=[ "Programming Language :: Python", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Operating System :: OS Independent" ],

but it is not clear to me how the wheel can be created, i see only a tar.gz in created in pypi repository and conda library
can someone implement this change ?