Skip to content

Commit 7890ca0

Browse files
committed
Bump version and update setup to new layout package-url#12
Signed-off-by: Philippe Ombredanne <pombredanne@nexb.com>
1 parent 374a610 commit 7890ca0

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

setup.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,21 +8,22 @@
88
from os.path import basename
99
from os.path import splitext
1010

11+
from setuptools import find_packages
1112
from setuptools import setup
1213

14+
1315
setup(
1416
name='packageurl-python',
15-
version='0.7.0',
17+
version='0.8.0',
1618
license='MIT',
1719
description='A "purl" aka. package URL parser and builder',
1820
long_description='Python library to parse and build "purl" aka. package URLs. '
1921
'This is a microlibrary implementing the purl spec at https://github.com/package-url',
2022
author='the purl authors',
2123
url='https://github.com/package-url/packageurl-python',
22-
# packages=find_packages('src'),
24+
packages=find_packages('src'),
2325
package_dir={'': 'src'},
2426
py_modules=[splitext(basename(path))[0] for path in glob('src/*.py')],
25-
2627
include_package_data=True,
2728
zip_safe=False,
2829
platforms='any',

0 commit comments

Comments
 (0)