File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 14
14
15
15
import ast
16
16
import re
17
- from setuptools import setup
18
17
import textwrap
19
18
19
+ from setuptools import setup , find_packages
20
20
21
21
_version_re = re .compile (r"__version__\s+=\s+(.*)" )
22
22
23
-
24
23
with open ("trino/__init__.py" , "rb" ) as f :
25
24
trino_version = _version_re .search (f .read ().decode ("utf-8" ))
26
25
assert trino_version is not None
38
37
"pytest" ,
39
38
"pytest-runner" ,
40
39
"pytz" ,
41
- "click" ]
40
+ "click" ,
41
+ ]
42
42
43
43
setup (
44
44
name = "trino" ,
45
45
author = "Trino Team" ,
46
46
47
47
version = version ,
48
48
url = "https://github.com/trinodb/trino-python-client" ,
49
- packages = ["trino" ] ,
49
+ packages = find_packages ( include = ["trino" , "trino.*" ]) ,
50
50
package_data = {"" : ["LICENSE" , "README.md" ]},
51
51
description = "Client for the Trino distributed SQL Engine" ,
52
52
long_description = textwrap .dedent (
You can’t perform that action at this time.
0 commit comments