Skip to content

Commit 22123b9

Browse files
committed
Fixed setup.py.
1 parent 4b89843 commit 22123b9

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

setup.py

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,8 @@
3030
# ==================================================================================================================== #
3131
#
3232
"""Package installer for 'An abstract model of EDA tool projects'."""
33+
from setuptools import setup
34+
3335
from pathlib import Path
3436
from pyTooling.Packaging import DescribePythonPackageHostedOnGitHub, DEFAULT_CLASSIFIERS
3537

@@ -38,13 +40,16 @@
3840
packageDirectory = packageName.replace(".", "/")
3941
packageInformationFile = Path(f"{packageDirectory}/__init__.py")
4042

41-
DescribePythonPackageHostedOnGitHub(
43+
setup(**DescribePythonPackageHostedOnGitHub(
4244
packageName=packageName,
4345
description="An abstract model of EDA tool projects.",
4446
gitHubNamespace=gitHubNamespace,
4547
sourceFileWithVersion=packageInformationFile,
4648
developmentStatus="beta",
4749
classifiers=list(DEFAULT_CLASSIFIERS) + [
4850
"Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)"
49-
]
50-
)
51+
],
52+
dataFiles={
53+
packageName: ["py.typed"]
54+
}
55+
))

0 commit comments

Comments
 (0)