Detect submodules so that the docs generate correctly (#117)
* Automatically detect packages * Explicitly list the bcml tensorflow subpackage * Add all the widgets submodules as well * Bump version to v1.4.2
This commit is contained in:
Родитель
1e3d175735
Коммит
d8d188fbd5
|
@ -25,7 +25,7 @@ copyright = '2021, Microsoft'
|
|||
author = 'Besmira Nushi, Ece Kamar, Xavier Fernandes, Nicholas King, Kathleen Walker, Juan Lema, Megha Srivastava, Gagan Bansal, Dean Carignan'
|
||||
|
||||
# The full version, including alpha/beta/rc tags
|
||||
release = '1.4.1'
|
||||
release = '1.4.2'
|
||||
|
||||
|
||||
# -- General configuration ---------------------------------------------------
|
||||
|
|
12
setup.py
12
setup.py
|
@ -6,7 +6,7 @@ import setuptools
|
|||
|
||||
|
||||
# this must be incremented every time we push an update to pypi (but not before)
|
||||
VERSION = "1.4.1"
|
||||
VERSION = "1.4.2"
|
||||
|
||||
# supply contents of our README file as our package's long description
|
||||
with open("README.md", "r") as fh:
|
||||
|
@ -30,16 +30,20 @@ setuptools.setup(
|
|||
long_description_content_type="text/markdown",
|
||||
url="https://github.com/microsoft/BackwardCompatibilityML",
|
||||
|
||||
# this will find our package "xtlib" by its having an "__init__.py" file
|
||||
# Pckages
|
||||
packages=[
|
||||
"backwardcompatibilityml",
|
||||
"backwardcompatibilityml.loss",
|
||||
"backwardcompatibilityml.helpers",
|
||||
"backwardcompatibilityml.widgets",
|
||||
"backwardcompatibilityml.widgets.compatibility_analysis",
|
||||
"backwardcompatibilityml.widgets.compatibility_analysis.resources",
|
||||
"backwardcompatibilityml.widgets.model_comparison.resources"
|
||||
"backwardcompatibilityml.widgets.model_comparison",
|
||||
"backwardcompatibilityml.widgets.model_comparison.resources",
|
||||
"backwardcompatibilityml.tensorflow",
|
||||
"backwardcompatibilityml.tensorflow.loss"
|
||||
|
||||
], # setuptools.find_packages(),
|
||||
],
|
||||
|
||||
entry_points={
|
||||
},
|
||||
|
|
Загрузка…
Ссылка в новой задаче