File tree Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Original file line number Diff line number Diff line change 1
- 0.11.1
1
+ 0.11.2
Original file line number Diff line number Diff line change 2
2
import jsonparse
3
3
4
4
# python imports
5
- from setuptools import setup
5
+ from setuptools import setup , find_namespace_packages
6
6
import os
7
7
from codecs import open
8
8
33
33
author = AUTHOR ,
34
34
author_email = EMAIL ,
35
35
license = 'MIT' ,
36
- packages = ['jsonparse' ],
37
36
classifiers = [
38
37
'Programming Language :: Python :: 3' ,
39
38
'Programming Language :: Python :: 3.7' ,
47
46
'gunicorn>=20.1.0,<21.0.0'
48
47
]
49
48
},
49
+ packages = find_namespace_packages (where = "." ),
50
+ package_dir = {"" : "." },
50
51
package_data = {
51
52
'jsonparse' : ['VERSION' ],
52
53
'jsonparse.static.css' : ['*.css' ],
53
54
'jsonparse.static.img' : ['*.png' ],
54
55
'jsonparse.static.js' : ['*.js' ],
55
56
'jsonparse.static' : ['openapi.yaml' ],
56
- 'jsonparse.templates' : ['*.html' ]
57
- }
57
+ 'jsonparse.templates' : ['*.html' ],
58
+ },
58
59
)
You can’t perform that action at this time.
0 commit comments