File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 1+ recursive-include uliweb_apijson *.ini *.txt *.html *.js *.css *.md
Original file line number Diff line number Diff line change 44import re
55import os
66
7- from setuptools import setup
7+ from setuptools import setup , find_packages
88
99def fpath (name ):
1010 return os .path .join (os .path .dirname (__file__ ), name )
@@ -29,7 +29,6 @@ def grep(attrname):
2929 pattern = r"{0}\s*=\s*'([^']*)'" .format (attrname )
3030 strval , = re .findall (pattern , file_text )
3131 return strval
32-
3332setup (
3433 name = 'uliweb-apijson' ,
3534 version = grep ('__version__' ),
@@ -39,7 +38,7 @@ def grep(attrname):
3938 author_email = grep ('__email__' ),
4039 description = 'uliweb-apijson' ,
4140 long_description = desc (),
42- packages = [ 'uliweb_apijson' ] ,
41+ packages = find_packages () ,
4342 include_package_data = True ,
4443 zip_safe = False ,
4544 platforms = 'any' ,
You can’t perform that action at this time.
0 commit comments