Python distutils.core.find_packages() Examples

The following are 1 code examples of distutils.core.find_packages(). You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may also want to check out all available functions/classes of the module distutils.core , or try the search function .
Example #1
Source File: setup.py    From CausalDiscoveryToolbox with MIT License 6 votes vote down vote up
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')