File tree Expand file tree Collapse file tree 2 files changed +7
-6
lines changed Expand file tree Collapse file tree 2 files changed +7
-6
lines changed Original file line number Diff line number Diff line change 1
1
"""Module setup."""
2
2
3
3
import os
4
- import runpy
5
4
from setuptools import setup , find_packages
6
5
7
6
PACKAGE_NAME = "aries_cloudcontroller"
8
- # version_meta = runpy.run_path("./{}/version.py".format(PACKAGE_NAME))
9
- # VERSION = version_meta["__version__"]
10
-
11
7
12
8
with open (os .path .abspath ("README.md" ), "r" ) as fh :
13
9
long_description = fh .read ()
14
10
15
11
16
- def parse_requirements (filename ):
12
+ def parse_requirements (filename : str ):
17
13
"""Load requirements from a pip requirements file."""
18
14
lineiter = (line .strip () for line in open (filename ))
19
15
return [line for line in lineiter if line and not line .startswith ("#" )]
@@ -29,7 +25,12 @@ def parse_requirements(filename):
29
25
url = "https://github.com/didx-xyz/aries-cloudcontroller-python/tree/main/aries_cloudcontroller" ,
30
26
packages = find_packages (),
31
27
include_package_data = True ,
32
- package_data = {"aries_cloudcontroller" : ["requirements.txt" ]},
28
+ package_data = {
29
+ "aries_cloudcontroller" : [
30
+ "requirements.txt" ,
31
+ "aries_cloudcontroller/py.typed" ,
32
+ ]
33
+ },
33
34
install_requires = parse_requirements ("requirements.txt" ),
34
35
python_requires = ">=3.8" ,
35
36
classifiers = [
You can’t perform that action at this time.
0 commit comments