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 4
4
import re
5
5
import os
6
6
7
- from setuptools import setup
7
+ from setuptools import setup , find_packages
8
8
9
9
def fpath (name ):
10
10
return os .path .join (os .path .dirname (__file__ ), name )
@@ -29,7 +29,6 @@ def grep(attrname):
29
29
pattern = r"{0}\s*=\s*'([^']*)'" .format (attrname )
30
30
strval , = re .findall (pattern , file_text )
31
31
return strval
32
-
33
32
setup (
34
33
name = 'uliweb-apijson' ,
35
34
version = grep ('__version__' ),
@@ -39,7 +38,7 @@ def grep(attrname):
39
38
author_email = grep ('__email__' ),
40
39
description = 'uliweb-apijson' ,
41
40
long_description = desc (),
42
- packages = [ 'uliweb_apijson' ] ,
41
+ packages = find_packages () ,
43
42
include_package_data = True ,
44
43
zip_safe = False ,
45
44
platforms = 'any' ,
You can’t perform that action at this time.
0 commit comments