Hello,
I would like to point to my Python Packaging Tutorial explaining several
common use cases using minimal demo projects.
<https://codeberg.org/buhtz/tech-demo-python-packaging>
I am not an expert and assume that some of my solutions might not be the
best. So I would appreciate
On 11/17/21 07:44, Chris Angelico wrote:
On Thu, Nov 18, 2021 at 12:20 AM Skip Montanaro
wrote:
Is the proliferation of packaging formats in Python as nutzo as this author
believes?
https://drewdevault.com/2021/11/16/Python-stop-screwing-distros-over.html
Asking because I've never been in t
On 2021-11-17, Skip Montanaro wrote:
> Is the proliferation of packaging formats in Python as nutzo as this author
> believes?
>
> https://drewdevault.com/2021/11/16/Python-stop-screwing-distros-over.html
>
> Asking because I've never been in the business of releasing "retail" Python
> application
On Thu, Nov 18, 2021 at 12:20 AM Skip Montanaro
wrote:
>
> Is the proliferation of packaging formats in Python as nutzo as this author
> believes?
>
> https://drewdevault.com/2021/11/16/Python-stop-screwing-distros-over.html
>
> Asking because I've never been in the business of releasing "retail"
Is the proliferation of packaging formats in Python as nutzo as this author
believes?
https://drewdevault.com/2021/11/16/Python-stop-screwing-distros-over.html
Asking because I've never been in the business of releasing "retail" Python
applications or packages.
Skip
--
https://mail.python.org/m
On 2019-01-06 13:26:15 +0100, Peter J. Holzer wrote:
> I haven't packaged anything yet. I have looked at the documentation
> several times and I agree that it looks somewhat daunting (I am not
> unfamiliar with packaging systems: I have built rpm and deb packages,
> and used both the Makefile.PL an
Hey guys,
I wrote a python package to deal with heatmiser's protocol when communicating
with devices over TCP.
It would be good to wrap some tests around it as I know the core elements won't
change - but need to add support for different devices and different connection
methods.
One thing has
Rick Johnson writes:
> On Thursday, January 8, 2015 at 7:12:18 PM UTC-6, Ben Finney wrote:
>
> > That does not contradict the position that [python packaging] is an
> > ornery beast full of hidden traps and compromises though; it just
> > means that everything that came
On Thursday, January 8, 2015 at 7:12:18 PM UTC-6, Ben Finney wrote:
> That does not contradict the position that [python
> packaging] is an ornery beast full of hidden traps and
> compromises though; it just means that everything that
> came before it (in Python) is worse
Ben, you
On Friday, January 9, 2015 at 6:42:18 AM UTC+5:30, Ben Finney wrote:
> Steven D'Aprano writes:
>
> > Is there a good tutorial to learn about pip?
>
> I'll answer what I think is the correct question: where to learn about
> the current best Python packaging practic
Steven D'Aprano writes:
> Is there a good tutorial to learn about pip?
I'll answer what I think is the correct question: where to learn about
the current best Python packaging practices.
We have recently gained an official body whose explicit job is to
direct, and be opin
Thank you very much! :-)
On Monday, February 3, 2014 11:30:00 PM UTC-8, dieter wrote:
> thebiggestbangthe...@gmail.com writes:
>
>
>
> > I am trying to package up a very simple python app. In my setup.py file I
> > have a couple of lines that include the following:
>
> >
>
> > from setuptool
thebiggestbangthe...@gmail.com writes:
> I am trying to package up a very simple python app. In my setup.py file I
> have a couple of lines that include the following:
>
> from setuptools import setup
>
> setup(
> name='ban',
> version='0.1',
> packages=['ban',],
>
Hello all,
I am trying to package up a very simple python app. In my setup.py file I have
a couple of lines that include the following:
from setuptools import setup
setup(
name='ban',
version='0.1',
packages=['ban',],
description='Python Distribution Utilities',
Eugene Sajine writes:
> ...
> Here is what i'm trying to achieve:
> 1. I want to be able to specify the set of dependencies for the project i'm
> currently developing and make them available for the import. Think java jar -
> having it in class path allows for the code reuse (import packages pro
Hi!
I'm trying to create a development infrastructure that would allow for simple
and unified ways of sharing, *deploying* and *reusing* the code within private
entity. I can see that pip with virtual environments and requirements.txt is
very similar to dependency management provided by maven o
On Jul 25, 2:25 am, eric.lemi...@gmail.com wrote:
> On Monday, July 23, 2012 11:59:10 PM UTC-6, Rusi wrote:
> > Ive heard good things about scons http://en.wikipedia.org/wiki/SCons
>
> I've heard about SCons but don't know much about it. From what little I've
> read, it's
> only a make tool repla
On Monday, July 23, 2012 11:59:10 PM UTC-6, Rusi wrote:
> On Jul 23, 11:16 pm, eric.lemi...@gmail.com wrote:
> > Greetings all,
> >
> > I would like to leverage the Python packaging tools (e.g. distutils,
> setuptools, distribute, et. al.) to maintain (i.e. download, ext
On Jul 23, 11:16 pm, eric.lemi...@gmail.com wrote:
> Greetings all,
>
> I would like to leverage the Python packaging tools (e.g. distutils,
> setuptools, distribute, et. al.) to maintain (i.e. download, extract,
> configure, make, install, package) source distributions ot
Greetings all,
I would like to leverage the Python packaging tools (e.g. distutils,
setuptools, distribute, et. al.) to maintain (i.e. download, extract,
configure, make, install, package) source distributions other than Python
modules (e.g. zlib, openssl).
Are there any open-source packages
XLiIV, 25.02.2012 15:47:
> There is many packaging solutions for python.
> I was confused about that but it's nothing. I had to pick one of them.
> I picked distutils because it's part of standard python since 3.3, am
> i right?
Distutils has been part of Python's stdlib for ages.
> My goal is t
There is many packaging solutions for python.
I was confused about that but it's nothing. I had to pick one of them.
I picked distutils because it's part of standard python since 3.3, am
i right?
My goal is to write setup.py with this feature: 'download required
package if not installed already, li
On 07/06/2011 11:44 AM, Benji Benjokal wrote:
>
> Can someone show me how to package with py2exe?
> Every time I tried it says the file does not exist.
If you show us how you're trying to do it, somebody may be able to spot
your error.
PS: http://www.catb.org/~esr/faqs/smart-questions.html
--
Can someone show me how to package with py2exe?
Every time I tried it says the file does not exist.
Can you help?
Thanks
--
http://mail.python.org/mailman/listinfo/python-list
On May 6, 2:59 pm, Tim Golden wrote:
> On 06/05/2011 10:51, Jonathan Hartley wrote:
>
> > On Apr 26, 3:39 pm, snorble wrote:
> >> I appreciate any advice or guidance anyone has to offer.
>
> > The 'Python Project HOWTO' gives good advice in terms of setting up a
> > new project, what files and di
I forgot an important detail...
This session will be hosted Thu 1 May at 21.00 UTC on IRC in #ubuntu-
classroom.
--
http://mail.python.org/mailman/listinfo/python-list
Hi All,
If you wrote some python code that you want to package or know a cool
python application of which you like to make a deb installer, the
python packaging session is all for you! Do you develop some cross-
platform open source software and you want to give its popularity a
boost by bringing
27 matches
Mail list logo