Skip to content

Commit 3c26e71

Browse files
committed
REF: Major reorg:
- Package rename. - Improvements to documentation. - many other changes.
1 parent edc2e8e commit 3c26e71

32 files changed

+76
-45
lines changed

.flake8

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ exclude =
55
build,
66
dist,
77
versioneer.py,
8-
botcity/_version.py,
8+
botcity/core/_version.py,
99
docs/source/conf.py
1010
max-line-length = 115

.gitattributes

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
botcity/_version.py export-subst
1+
botcity/core/_version.py export-subst

.github/workflows/gh-pages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88

99
jobs:
1010
deploy:
11-
if: ${{ github.repository == 'hhslepicka/botcity-python' }}
11+
if: ${{ github.repository == 'hhslepicka/botcity-framework-core-python' }}
1212
runs-on: ${{ matrix.os }}
1313
strategy:
1414
matrix:

MANIFEST.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
include versioneer.py
2-
include botcity/_version.py
2+
include botcity/core/_version.py

botcity/__init__.py

Lines changed: 0 additions & 4 deletions
This file was deleted.
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,7 @@
33
from .mouse import * # noqa: F401, F403
44
from .keyboard import * # noqa: F401, F403
55
from .misc import * # noqa: F401, F403
6+
7+
from botcity.core._version import get_versions
8+
__version__ = get_versions()['version']
9+
del get_versions
File renamed without changes.

0 commit comments

Comments
 (0)