Request to Review: Tutorial about Python Packaging offering different use case

2023-12-13 Thread Christian Buhtz via Python-list
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

Re: Proliferation of Python packaging formats

2021-11-17 Thread Mats Wichmann
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

Re: Proliferation of Python packaging formats

2021-11-17 Thread Jon Ribbens via Python-list
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

Re: Proliferation of Python packaging formats

2021-11-17 Thread Chris Angelico
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"

Proliferation of Python packaging formats

2021-11-17 Thread Skip Montanaro
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

Python packaging (was: the python name)

2019-01-06 Thread Peter J. Holzer
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

Python Packaging and being a good testing citizen

2015-12-18 Thread Andy Loughran
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

Re: Where to learn current best Python packaging practices

2015-01-08 Thread Ben Finney
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

Re: Where to learn current best Python packaging practices (was: Announce: PyPrimes 0.2.1a)

2015-01-08 Thread Rick Johnson
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&#x

Re: Where to learn current best Python packaging practices (was: Announce: PyPrimes 0.2.1a)

2015-01-08 Thread Rustom Mody
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

Where to learn current best Python packaging practices (was: Announce: PyPrimes 0.2.1a)

2015-01-08 Thread Ben Finney
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

Re: Advice needed for Python packaging - can't find required library during installation

2014-02-04 Thread thebiggestbangtheory
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

Re: Advice needed for Python packaging - can't find required library during installation

2014-02-03 Thread dieter
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',], >

Advice needed for Python packaging - can't find required library during installation

2014-02-03 Thread thebiggestbangtheory
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',

Re: Development infrastructure - need python packaging gurus help, please

2014-01-28 Thread dieter
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

Development infrastructure - need python packaging gurus help, please

2014-01-28 Thread Eugene Sajine
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

Re: Using Python packaging tools to maintain source distributions in other languages?

2012-07-24 Thread Rusi
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

Re: Using Python packaging tools to maintain source distributions in other languages?

2012-07-24 Thread eric . lemings
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

Re: Using Python packaging tools to maintain source distributions in other languages?

2012-07-23 Thread rusi
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

Using Python packaging tools to maintain source distributions in other languages?

2012-07-23 Thread eric . lemings
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

Re: Python packaging usabilty (distutils) - automatic downloading required packages

2012-02-25 Thread Stefan Behnel
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

Python packaging usabilty (distutils) - automatic downloading required packages

2012-02-25 Thread XLiIV
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

Re: Python Packaging

2011-07-06 Thread Thomas Jollans
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 --

Python Packaging

2011-07-06 Thread Benji Benjokal
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

Python packaging (was Development tools and practices for Pythonistas)

2011-05-06 Thread rusi
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

Re: Learn python packaging for Ubuntu and Debian in the Ubuntu Open Week

2008-04-29 Thread SPE - Stani's Python Editor
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

Learn python packaging for Ubuntu and Debian in the Ubuntu Open Week

2008-04-29 Thread SPE - Stani's Python Editor
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