We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9ccaf2f commit 14d4729Copy full SHA for 14d4729
setup.py
@@ -10,7 +10,7 @@
10
author_email="[email protected]",
11
url="https://github.com/StatMixedML/LightGBMLSS",
12
license="Apache License 2.0",
13
- packages=find_packages(exclude=["tests"]),
+ packages=find_packages(exclude=["docs", "tests*"]),
14
include_package_data=True,
15
package_data={'': ['datasets/*.csv']},
16
zip_safe=True,
@@ -30,6 +30,9 @@
30
"matplotlib~=3.7.2",
31
"ipython~=8.14.0",
32
],
33
+ extras_require={
34
+ "docs": ["mkdocs", "mkdocstrings[python]", "mkdocs-jupyter"]
35
+ },
36
test_suite="tests",
37
tests_require=["flake8", "pytest"],
38
)
0 commit comments