twine Questions
3
Solved
I am building a Python PIP package to be stored on Google Artifact Registry.
The pyproject.toml is as below:
[build-system]
requires = ["setuptools>=68.0.0,<69.0.0", "setuptool...
Gingerly asked 1/7 at 23:41
16
Solved
I'm trying to upload a python package to PyPi, using the following commands:
pip install -e .
python setup.py bdist_wheel --universal
twine upload --repository-url https://upload.pypi.org/legacy/ ...
2
Solved
I'm attempting to upload a tarball and wheel for a new package to PyPI using twine which was recently installed under a conda environment (Miniconda3). After I enter my username I expect to be prom...
6
I followed the official documentation for uploading packages to PyPI, as well as the information provided in PyPI readme, but I get a HTTP 400 error each time:
$ twine upload dist/*
Uploading dist...
9
Solved
I've uploaded my Python package to PyPI.
But now I made new version of my package and need to upload it.
I tried to make same progress which I did when upload the package first time but I got the e...
Dormancy asked 25/8, 2018 at 10:26
3
Solved
403 Client Error: Invalid or non-existent authentication information occurs when uploading new module to pypi with Twine
Win10 Pro 1803 Biuld 17134.1069 64 bit // Python 3.7.5 32 bit // pip 19.3.1...
Stansbury asked 21/11, 2019 at 9:28
2
I develop a Python library using Gitflow development principle and have a CI stage for unit testing and package upload to a (private) PyPI. I want to consume the uploaded package for testing purpos...
Thermoluminescent asked 27/9, 2021 at 9:11
3
When I tried to push a new package to my company's artifactory :
python -m twine upload --repository-url https:///artifactory/api/pypi/gdp_pypi dist/*
I got an error on SSL.
ssl.SSLError: [SSL: CER...
Saurian asked 1/6, 2021 at 20:49
3
Solved
I am trying to use twine to publish my first python package on pypi (of course will add on test-pypi first).
I followed the official guideline on https://packaging.python.org/tutorials/packaging-...
3
Solved
I want to upload packages to pypi.org as mentioned in the Migrating to PyPI.org documentation, but Twine uploads to https://upload.pypi.org/legacy/.
It's available on pypi.python.org/pypi/mypolr,...
2
Solved
Heres is my setup
setup(
name="`...",
version="...",
description=...,
long_description_content_type="text/markdown",
long_description=README,
author="...&qu...
Mellette asked 14/8, 2020 at 16:23
2
Solved
I have pip installed pypirc and set up a ~/.pypirc file with the requisite password. Why is twine asking for a password each time python setup.py is invoked?
$twine upload --repository-url https:...
Telefilm asked 14/9, 2019 at 11:45
7
Solved
I'm trying to upload a package to pypi using a Gitlab CI job, but I cannot make it work :/ Anyone has a working example?
What I have tried so far in my .gitlab-ci.yaml (from my local machine all o...
2
Solved
I am trying to update the version of infixpy using twine. Here is my ~/.pypirc:
index-servers =
pypi
pypitest
[pypi]
repository: https://upload.pypi.org/legacy/
username: myuser
password: mypas...
1
Solved
I am trying to build my own Python package (installable by pip) using the twine package. This is all going well right up until the point where I try to pip install my actual package (so after uploa...
Backstay asked 23/9, 2020 at 15:20
1
Solved
I am trying to upload a package on Pypi for linux and windows from github actions
with linux I get this result
Binary wheel 'xxx-cp36-cp36m-linux_x86_64.whl' has an unsupported platform tag 'lin...
2
Solved
Has anybody got an error like this when you try to upload your package ?
$ twine upload dist/*
Uploading distributions to https://upload.pypi.org/legacy/
Enter your username: MyUsername
Enter ...
2
Solved
I uploaded a package to pypi.org but my RST README isn't formatted correctly.
This is what it looks like on GitHub: https://github.com/NinjaSnail1080/akinator.py
This is what it looks like on PyP...
Fabiano asked 29/3, 2019 at 17:8
2
Solved
Why is this creating 2 tar.gz files, ‘
python setup.py sdist? I am trying to upload using
twine upload -r pypitest dist/*.tar.gz and i get error saying
HTTPError: 400 Client Error: Only one sdis...
Panhellenic asked 23/5, 2018 at 14:43
2
Solved
I have made changes to package I had submitted long time back in 2015 now today I added support markdown on pypi and updated setup.py to support pip version 10,
however now I am facing a strange ...
Lutestring asked 20/5, 2018 at 15:5
1
I'm trying to upload a Python file to PyPi via twine upload <file> but I get an SSL error:
C:\pypubsub>twine upload dist\PyPubSub-4.0.0rc1-py3-none-any.whl
Uploading distributions to htt...
Paynter asked 11/10, 2016 at 5:15
1
Solved
I apologize in advance since this seems like a basic question...
I am trying to learn using mujoco(link here), and inside its python binding Makefile it has:
upload:
rm -rf dist
python setup.py...
1
Here's my setup.py
setup(
name='shipane_sdk',
version='1.0.0.a5',
# ...
data_files=[(os.path.join(os.path.expanduser('~'), '.shipane_sdk', 'config'), ['config/scheduler-example.ini'])],
#...
1
© 2022 - 2024 — McMap. All rights reserved.