Tagged Questions
The packaging tag has no wiki summary.
40
votes
10answers
15k views
py2exe - generate single executable file
I thought I heard that py2exe was able to do this, but I never figured it out. Has anyone successfully done this? Can I see your setup.py file, and what command line options you used?
Basically I'm ...
33
votes
2answers
642 views
Alternative implementations of python/setuptools entry points (extensions) in other languages/applications
While this question has a python backend, the question is not tied to python itself, but rather about extension mechanisms and how to register/lookup for plugins.
In python, the concept of ...
33
votes
4answers
834 views
Can we shed some definitive light on how python packaging and import works?
I had my fair chance of getting through the python management of modules, and every time is a challenge: packaging is not what people do every day, and it becomes a burden to learn, and a burden to ...
31
votes
8answers
17k views
How to build a Debian/Ubuntu package from source?
I have the source of a program (taken from cvs/svn/git/...) and I'd like to build a Debian/Ubuntu package for it. The package is present in the repositories, but:
It is an older version (lacking ...
29
votes
4answers
1k views
Differences between distribute, distutils and setuptools?
I'm trying to port an open-source library (SymPy, if anyone is wondering) to Python 3. To do this, I need to run 2to3 automatically when building for Python 3. To do that, I need to use distribute, ...
25
votes
2answers
12k views
How to create Python egg file
I have questions about egg files in Python.
I have much Python code organized by package and I'm trying to create egg files.
I'm following instructions, but they are very common.
According to that, ...
24
votes
2answers
683 views
Are there tools that would be suitable for maintaining a changelog for a Cabal Haskell package?
I'm working fast and furiously on a new Haskell package for compiler writers. I'm going through many minor version numbers daily, and the Haskell packaging system, Cabal, doesn't seem to offer any ...
24
votes
8answers
30k views
How can I make my ad hoc iPhone application's icon show up in iTunes?
I've got an iPhone app with icon file Icon.png.
This icon shows up properly when the app is on the phone itself, but it doesn't show up in the applications pane in iTunes.
What do I need to do to ...
18
votes
6answers
2k views
What are the advantages of packaging your python library/application as an .egg file?
I've read some about .egg files and I've noticed them in my lib directory but what are the advantages/disadvantages of using then as a developer?
16
votes
2answers
10k views
how to make a jar file that include dll files
i bought a third-party java library which include a jar file and two dll files. i wrote my own java program which invoke the third-party jar file. now my question is how can i package all my code ...
16
votes
10answers
5k views
java.lang.Exception vs. rolling your own exception
At what point would you create your own exception class vs. using java.lang.Exception? (All the time? Only if it will be used outside the package? Only if it must contain advanced logic? etc...)
15
votes
5answers
4k views
How to bundle a python application including dependencies for windows?
I need to package my python application, its dependencies and python into a single MSI installer. The end result should desirably be:
Python is installed in the standard location
the package and its ...
14
votes
4answers
441 views
Running a Clojure program
say i create a program in clojure and i have to deliver it to a client. the client does have some computer knowledge but he does not know/want to start the repl, load my program, and run it. he wants ...
13
votes
2answers
4k views
Questions about Setuptools and alternatives
I've seen a good bit of setuptools bashing on the internets lately. Most recently, I read James Bennett's On packaging post on why no one should be using setuptools. From my time in #python on ...
13
votes
1answer
997 views
What's the best way to distribute python command-line tools?
This is my current setup.py script. It works okay, but it installs tvnamer.py (the tool) as "tvnamer.py" into site-packages or somewhere similar..
Can I make setup.py install tvnamer.py as tvnamer, ...
12
votes
2answers
1k views
“setup.py upload” is failing with “Upload failed (401): You must be identified to edit package information”
When running..
python setup.py sdist register upload
..I get the following output:
running register
We need to know who you are, so please choose either:
1. use your existing login,
2. register ...
12
votes
3answers
9k views
define ant property from environment with default value
I would like my build script to act properly for release and development environments.
For this I would like to define a property in ant, call it (e.g.) fileTargetName
fileTargetName will get it's ...
12
votes
9answers
6k views
Python Daemon Packaging Best Practices
I have a tool which I have written in python and generally should be run as a daemon. What are the best practices for packaging this tool for distribution, particularly how should settings files and ...
11
votes
2answers
361 views
How do I make an ubuntu/debian package for a twistd/twisted plugin?
As a follow-up to How do I write a setup.py for a twistd/twisted plugin that works with setuptools, distribute, etc?, how does one make a debian package for a twisted plugin?
Assuming the setup.py is ...
11
votes
1answer
1k views
Packaging and Deploying Scala Applications
What is the simplest way to package a Scala application for use on a desktop PC? I'm guessing that would be in the form of a jar file.
At the moment I'm using SBT to compile and run programs
I'd be ...
10
votes
2answers
282 views
Packaging supporting R code in a python module?
I am trying to package some of my Python code that calls R code using rpy2. That R code currently sits in a separate file which I source from the Python script. For example, if the python script is ...
10
votes
8answers
596 views
When is it (not) appropriate to bundle dependencies with an application?
Summary
I recently had a conversation with the creator of a framework that one of my applications depends on. During that conversation he mentioned as a sort of aside that it would make my life ...
10
votes
3answers
4k views
How do you create an osx application/dmg from a python package?
I want to create a mac osx application from python package and then put it in a disk image.
Because I load some resources out of the package, the package should not reside in a zip file.
The ...
9
votes
1answer
144 views
Standard way to create debian packages for distributing python programs?
Out there there is a ton of information on how to do this, but since "there is more than a way to skin a cat", and all the tutorials/manuals that cover a bit of the process seem to make certain ...
9
votes
2answers
486 views
How should I structure a Python package that contains Cython code
I'd like to make a Python package containing some Cython code. I've got the the Cython code working nicely. However, now I want to know how best to package it.
For most people who just want to ...
8
votes
3answers
465 views
Several groups in RPM package
Is it possible for single rpm package to belong to several groups?
In spec file you can set package group:
Group: System Environment/Base
What I need is to be able to set several groups for ...
8
votes
1answer
1k views
Google Chrome Extensions and NPAPI
I need to write some Google Chrome extension. The problem is that Chrome JavaScript APIs don't give me enough power - I need to use native code. I thought about writing a NPAPI plug-in that will ...
8
votes
8answers
774 views
How do you implement the “one step build” for a LAMP project?
Having the "one push build" to take your changes from development environment to live server is one thing that is very nice to have and often advocated.
I came on board with a small team running in ...
7
votes
2answers
172 views
how to decouple data from business logic
Here is the scenario,
Let's say I have a user class like so:
public class User{
private String firstName;
private String lastName;
//...
// setter, getters
}
Then I have a class like so to ...
6
votes
1answer
129 views
Ruby packaging ecosystem as Python terminologies
I have some experiences about Ruby, but it’s less than my Python experience. I packaged and published several Python packages, but there’s only one Ruby package I published. I want to learn rapidly ...
6
votes
2answers
648 views
Migrating to pip+virtualenv from setuptools
So pip and virtualenv sound wonderful compared to setuptools. Being able to uninstall would be great. But my project is already using setuptools, so how do I migrate? The web sites I've been able to ...
6
votes
2answers
238 views
How to specify dependency on external C library in .cabal?
I maintain a library with FFI bindings on Hackage. So my Haskell library depends on the corresponding C library and its header files. Now I specify the external dependency in the .cabal file like ...
6
votes
4answers
1k views
Why RPM is better than DEB for MeeGo?
I know there has been a lot fuzz about this subject on various forums and newsgroups concerning the merge of Moblin and Maemo. I'd like to know what stackoverflow-fellows think about this. What are ...
6
votes
4answers
284 views
How might I handle development versions of Python packages without relying on SCM?
One issue that comes up during Pinax development is dealing with development versions of external apps. I am trying to come up with a solution that doesn't involve bringing in the version control ...
6
votes
5answers
1k views
How can I make setuptools ignore subversion inventory?
When packaging a Python package with a setup.py that uses the setuptools:
from setuptools import setup
...
the source distribution created by:
python setup.py sdist
not only includes, as usual, ...
6
votes
3answers
566 views
How to package a command line Python script
I've created a python script that's intended to be used from the command line. How do I go about packaging it? This is my first python package and I've read a bit about setuptools, but I'm still not ...
6
votes
5answers
536 views
Building Linux packages for multiple distributions and versions
My company has a software product that's written in C for a Linux platform, built with autotools and distributed via binary packages. To make the binaries, we first produce a source RPM and then ...
6
votes
2answers
175 views
How do you organize unit tests into packages?
As a matter of fact you have smth like /java/src and /java/test. But then, how do you name packages/classes the unittests go to? The same as classes they are written against? And when refactoring ...
5
votes
1answer
59 views
Pros/cons to various Java packaging strategies
Let's say I'm writing a Java backend for some front-end GUI (Swing) tool. This backend will consist of many different types of EJBs for middleware/business logic, as well as some web services that ...
5
votes
1answer
146 views
Why use an ear instead of a war?
I read this and this which are somewhat related to my question. But I came across this article that says that EJBs can be packaged in a war file. If this is the case, why is there a need for an ear? ...
5
votes
2answers
120 views
R — Vignettes that are not made by Sweave possible?
Can I include some PDF in the pkg/doc folder so that the vignette function works, but no corresponding Rnw, Rtex, etc exists?
I am thinking of slides or documents containing markdown text weaved with ...
5
votes
2answers
143 views
Python package external dependencies
I'm writing a python script which uses an external library (paramiko). If I'm to release the package how do I package paramiko also? Is there anyway I can give it as we can give dependencies in java ...
5
votes
1answer
1k views
Bundler: `bundle package` with a :git source
I'm trying to get my app to package my gems before deployment (to heroku) One of my gems in my Gemfile is a custom gem that I've written and I'm using the :git option of bundler to use the specific ...
5
votes
2answers
382 views
list python package dependencies without loading them?
Say that python package A requires B, C and D;
is there a way to list A → B C D without loading them ?
Requires in the metadata (yolk -M A) are often incomplete, grr.
One can download A.tar / ...
5
votes
4answers
302 views
What is the best practice for including third party jar files in a Java program?
I have a program that needs several third-party libraries, and at the moment it is packaged like so:
zerobot.jar (my file)
libs/pircbot.jar
libs/mysql-connector-java-5.1.10-bin.jar
...
5
votes
6answers
476 views
Game cross-compiling and packaging
Some friends and I wanted to develop a game. Any language will do. I've been programming in C for years, but never wrote a game before. One of us knows SDL a little bit. It would also be a nice excuse ...
5
votes
6answers
2k views
Process to convert simple Python script into Windows executable
I wrote a script that will help a Windows user in her daily life. I want to simply send her the .exe and not ask her to install python, dlls or have to deal with any additional files.
I've read ...
5
votes
2answers
284 views
How to run installed python script?
I used distutils to install my python package, with this setup.py :
import distutils.core
args = {
'name' : 'plugh',
'version' : '1.0',
'scripts' : [ ...
5
votes
6answers
1k views
How to merge wars into one?
In our company, we have a number different modules constructed as separate wars.
Each client can pick and choose module he wishes to buy.
Since all modules share same session, security context etc, ...
5
votes
3answers
256 views
Is there a way to package more than one .NET assembly in a dll?
I'd like to keep my components/assemblies clearly separated from a source code point of view but I also need in some circumstances (probably not relevant to expand) to package them in the same dll.
...