The packaging tag has no wiki summary.
64
votes
9answers
33k 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 ...
32
votes
2answers
24k 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 ...
157
votes
5answers
14k views
Differences between distribute, distutils, setuptools and distutils2?
The Situation
I’m trying to port an open-source library to Python 3. (SymPy, if anyone is wondering.)
So, I need to run 2to3 automatically when building for Python 3. To do that, I need to use ...
11
votes
6answers
15k views
Including dependencies in a jar with Maven
Is there a way to force maven(2.0.9) to include all the dependencies in a single jar file?
I have a project the builds into a single jar file. I want the classes from dependencies to be copied into ...
3
votes
1answer
2k views
JEE6> Packaging JSF facelets (xhtml) and ManagedBeans as JAR
Is it possible to package JSF facelets and ManagedBeans into a JAR file? So that we can use this code and UI combination in different war/ear projects?
I am not talking about JSF Components!
If yes ...
6
votes
1answer
3k views
JSF facelets template packaging
As always, i'm a little confused.
Here https://community.jboss.org/wiki/ModularWebAppsWithJSF2 i've learned that it is easy and works out of the box to bundle templates in separate jars since JSF ...
4
votes
6answers
2k views
What is the standard way to bundle OSGi dependent libraries?
I have a project that references a number of open source libraries, some new, some not so new. That said, they are all stable and I wish to stick with my chosen versions until I have time to migrate ...
45
votes
2answers
27k 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, ...
35
votes
7answers
38k 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 ...
20
votes
5answers
11k 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 ...
16
votes
25answers
18k views
Problem with Icon.png (Icon specified in the Info.plist not found under the top level app wrapper: Icon.png (-19007))
I'm putting together a universal app and I have the icons in my project, but I keep getting a warning from the compiler in regards to Icon.png.
I followed the instructions at ...
14
votes
3answers
6k 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 ...
24
votes
10answers
7k 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...)
11
votes
1answer
3k 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 ...
23
votes
1answer
3k views
What's the best way to distribute python command-line tools?
My current setup.py script 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, and/or is ...
16
votes
6answers
13k 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 ...
7
votes
2answers
2k 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 / ...
19
votes
2answers
7k 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 ...
20
votes
1answer
3k 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 ...
5
votes
2answers
692 views
How to create a python 2.x package - simple case
Please show the simple and up to date standard way to create a python package for python 2.x
I'd prefer to use pip for installing the package later.
The package should contain a single class:
class ...
2
votes
2answers
941 views
Packaging proprietary software for Linux
I'm doing cross-platform development and I want to build a nice, self-contained (!) package for Linux. I know that that's not the way it's usually done, but the application requires all data in one ...
5
votes
6answers
2k views
Version control for large binary files and >1TB repositories?
Sorry to come up with this topic again, as there are soo many other questions already related - but none that covers my problem directly.
What I'm searching is a good version control system that can ...
5
votes
2answers
662 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' : [ ...
22
votes
6answers
4k 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?
5
votes
3answers
4k views
Eclipse - How to “Change package declaration to …” across an entire project
I've just imported a large amount of source code into Eclipse and basically the package name is no longer valid (the code has been moved folders). Is there a way to select all the source code in the ...
2
votes
1answer
90 views
Installers binding
I have some installers like
JDK
Apache Tomcat
MySQL
MySQL GUI, etc.
I want to bundle all these installers together into a single .exe file, So that a single exe will in walk through all of the ...
2
votes
2answers
853 views
Converting a war file into an executable file
My company has developed a web application (J2EE environment/Tomcat server) and wants to sell it as a product. Customers can avail this product as basic edition or premium edition. In the premium ...
1
vote
1answer
258 views
Obfuscating python bytecode through interpreter mutation
Actually, Dropbox made it very well, they were able to secure their desktop application made in python; I researched this a lot, but no good solution better than obfuscation, which is not very secure ...
0
votes
2answers
497 views
Adding User License Agreement in Solaris package
I have asked similar question for Linux RPM (http://stackoverflow.com/questions/2132828/adding-license-agreement-in-rpm-package). Now i have same query for Solaris package. I could not get any helpful ...
2
votes
2answers
175 views
Ada: packaging concepts
This is a follow up of my earlier post here:
Ada: Understanding private types and understanding packaging
An implementation for the Rectangular type was made using one implementation i.e. ...
61
votes
10answers
37k 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 ...
37
votes
4answers
978 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 ...
18
votes
9answers
10k 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 ...
35
votes
2answers
930 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 ...
10
votes
1answer
1k views
packaging common python namespaces
I'm looking to package and upload a library I have to PyPI in the next few days, but I'm a little unsure about my approach to the namespace.
I have a few otherwise unrelated projects with a similar ...
10
votes
2answers
1k 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 ...
11
votes
5answers
2k 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, ...
9
votes
2answers
500 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 ...
8
votes
6answers
1k views
Distributing binary applications across linux distros
I've written an application which as of yet is not open source and I'd like to distribute the executable across various linux distros. What's the best way to do this, I've looked a little bit at .rpm ...
5
votes
6answers
3k 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, ...
3
votes
3answers
1k views
How to create OSX Package that runs Mono application “natively” (Bootstrapper)
Instead of requiring my users to drop to Terminal and start my app via mono <x> command, I'd like to give them an experience of clicking on "X.app" and Mono runtime launches my .NET assemblies.
...
2
votes
2answers
124 views
What are the benefits and downsides of using the Python packaging *.egg format over a simple directory with setup.py?
When I release a program, I usually just create a setup.py and put it on pypi. It's installable with pip, I can always share it easily with others. It works for me, and apparently for a lot of people.
...
2
votes
2answers
253 views
How to create a single application from multiple Android projects
I am developing a project where i have to create several Android projects but at the end i have to package all the projects in to one single application.is there anyway to do it?
Thanks !!!
11
votes
1answer
3k 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 ...
8
votes
2answers
3k 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 ...
7
votes
2answers
3k views
log4j configuration file in a multi-module Maven project
I am working on a multi-module Maven project, whose structure is like this:
war-module
jar-module
The war-module depends on the jar-module, and will add the jar artifact into the webapp's lib ...
7
votes
1answer
2k views
How to upload a pristine Python package to PyPI?
What's the magic "python setup.py some_incantation_here" command to upload a package to PyPI, in a form that can be downloaded to get the original package in its original form?
I have a package with ...
5
votes
1answer
396 views
Autoconf subdirectories with subpackages depending on each other?
I've got a large project on my hand (master) that is split into several components (liba, b, c, d) to ease building and maintenance. When building the whole package, all of the subcomponents must be ...
5
votes
2answers
1k views
Program Design - Package by Feature vs. Layer or Both?
I am in the design stage of a web application that allows users to create requests of work and the workers to put time against those requests. The application will also have reporting capabilities for ...
5
votes
2answers
874 views
What is a good way to package django apps?
I have a django project which is installed by customers on their servers. I've got a few more apps which are optional plugins of functionality that can be installed/uninstalled.
I'd like a simple ...
