File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change 8
8
from os .path import basename
9
9
from os .path import splitext
10
10
11
+ from setuptools import find_packages
11
12
from setuptools import setup
12
13
14
+
13
15
setup (
14
16
name = 'packageurl-python' ,
15
- version = '0.7 .0' ,
17
+ version = '0.8 .0' ,
16
18
license = 'MIT' ,
17
19
description = 'A "purl" aka. package URL parser and builder' ,
18
20
long_description = 'Python library to parse and build "purl" aka. package URLs. '
19
21
'This is a microlibrary implementing the purl spec at https://github.com/package-url' ,
20
22
author = 'the purl authors' ,
21
23
url = 'https://github.com/package-url/packageurl-python' ,
22
- # packages=find_packages('src'),
24
+ packages = find_packages ('src' ),
23
25
package_dir = {'' : 'src' },
24
26
py_modules = [splitext (basename (path ))[0 ] for path in glob ('src/*.py' )],
25
-
26
27
include_package_data = True ,
27
28
zip_safe = False ,
28
29
platforms = 'any' ,
You can’t perform that action at this time.
0 commit comments