mirror of
https://github.com/clearlinux/unbundle.git
synced 2026-08-24 16:57:57 +00:00
fefc970f2e
The packages file should be able to contain comments in the same line as a package name name (everything after the comment character '#' is to be ignored). Support this with updated logic to find pundle names.
8 lines
106 B
Python
8 lines
106 B
Python
from setuptools import setup
|
|
|
|
setup(
|
|
name="unbundle",
|
|
version="0.1.3",
|
|
scripts=["unbundle"]
|
|
)
|