本文整理汇总了Python中distutils.core.find_packages方法的典型用法代码示例。如果您正苦于以下问题:Python core.find_packages方法的具体用法?Python core.find_packages怎么用?Python core.find_packages使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类distutils.core
的用法示例。
在下文中一共展示了core.find_packages方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: setup_package
# 需要导入模块: from distutils import core [as 别名]
# 或者: from distutils.core import find_packages [as 别名]
def setup_package():
setup(name='cdt',
version='0.5.18',
description='A Toolbox for causal graph inference',
long_description="Documentation available at https://fentechsolutions.github.io/CausalDiscoveryToolbox/html/index.html",
long_description_content_type="text/markdown",
packages=find_packages(exclude=['examples', 'tests', 'tests.*']),
url='https://github.com/FenTechSolutions/CausalDiscoveryToolbox',
package_data={'': ['**/*.R', '**/*.csv']},
install_requires=['numpy', 'scipy', 'scikit-learn',
'joblib', 'pandas', 'statsmodels',
'networkx', 'skrebate', 'tqdm', 'GPUtil', 'requests'],
include_package_data=True,
author='Diviyan Kalainathan',
author_email='diviyan.kalainathan@lri.fr',
license='Apache 2.0')