在 Python 分布中添加其他文件

Add other files in Python distribution

我正在处理一个项目,我必须将其作为独立 SDK 与我的团队共享。由于某些原因,*.py 以外的文件未添加到我的分发文件中

我的项目结构如下

我的Setup.py是这样的

import setuptools
from glob import glob
from os.path import basename
from os.path import splitext

with open("README.md", "r") as fh:
    long_description = fh.read()

with open('requirements.txt') as f:
    install_requires = f.read().splitlines()[2:]

with open('requirements-dev.txt') as f:
    tests_require = f.read().splitlines()[2:]

extras = {
    'test': tests_require,
}

setuptools.setup(
    name='eu-taxonomy-sdk',
    version='0.0.2',
    author='Bhushan Fegade',
    author_email='bhushan.fegade@morningtar.com',
    description='a calculation library for eu-taxonomy',
    long_description=long_description,
    long_description_content_type='text/markdown',
    url='https://msstash.morningstar.com/scm/dataapi/eu-taxonomy-sdk.git',
    packages=setuptools.find_packages(where='src'),
    package_dir={'': 'src'},
    package_data={'eu-taxonomy-sdk': [ 'config/*', 'category/config/*' ]},
    py_modules=[splitext(basename(path))[0] for path in glob('src/*.py')],
    license='Apache Software License',
    classifiers=[
        'Programming Language :: Python :: 3',
        'License :: OSI Approved :: Apache Software License',
        'Operating System :: OS Independent',
    ],
    install_requires=install_requires,
    python_requires='~=3.8',
    tests_require=tests_require,
    extras_require=extras,
    test_suite='tests'
)

我正在使用以下命令生成可分发文件

python setup.py build
python setup.py sdist

我已尝试在 setup.py 文件中进行一些更改,但 config 文件夹中的可分发文件始终为空,只有 init.py文件且不存在其他文件。

我想知道是否有办法将那些其他文件(CSV、parq)保留在最终的可分发文件中。

添加 a MANIFEST.in file 描述您需要包含的文件。

例如

recursive-include src *.csv *.parq