Files
unbundle/setup.py
William Douglas fefc970f2e Handle packages file containing comments
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.
2018-12-04 10:05:13 -08:00

8 lines
106 B
Python

from setuptools import setup
setup(
name="unbundle",
version="0.1.3",
scripts=["unbundle"]
)