File tree Expand file tree Collapse file tree 1 file changed +8
-3
lines changed
Expand file tree Collapse file tree 1 file changed +8
-3
lines changed Original file line number Diff line number Diff line change 3030# ==================================================================================================================== #
3131#
3232"""Package installer for 'An abstract model of EDA tool projects'."""
33+ from setuptools import setup
34+
3335from pathlib import Path
3436from pyTooling .Packaging import DescribePythonPackageHostedOnGitHub , DEFAULT_CLASSIFIERS
3537
3840packageDirectory = packageName .replace ("." , "/" )
3941packageInformationFile = 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+ ))
You can’t perform that action at this time.
0 commit comments