Skip to content

Commit 4b8438c

Browse files
authored
Merge pull request #63 from CiscoDevNet/webexteamsdk
webexteamssdk Ready for Release! 🤞
2 parents 2dd57ca + 3fd2cf7 commit 4b8438c

File tree

123 files changed

+5135
-3595
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

123 files changed

+5135
-3595
lines changed

.flake8

Lines changed: 20 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,23 @@
11
[flake8]
2-
ignore = E402,F401,F403,F405,W503
2+
ignore =
3+
# E402 module level import not at top of file
4+
E402,
5+
# F401 'builtins.*' imported but unused
6+
F401,
7+
# F403 'from builtins import *' used; unable to detect undefined names
8+
F403,
9+
# F405 'unicode' may be undefined, or defined from star imports: builtins
10+
F405,
11+
# W503 line break before binary operator
12+
W503,
313
exclude =
4-
.git,
14+
.git/,
15+
.idea/,
16+
.venv/,
17+
.vscode/,
518
__pycache__,
6-
ciscosparkapi/_version.py,
7-
docs/source/conf.py,
8-
build,
9-
dist,
19+
dist/,
20+
docs/conf.py,
21+
venv/,
22+
versioneer.py,
23+
webexteamssdk/_version.py,

.gitattributes

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

.gitignore

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,15 @@
11
# Local Files
2-
.envrc
3-
.venv/
42
local/
53

64

5+
# Virtual Environments
6+
.venv/
7+
venv/
8+
9+
710
# Test artifacts
811
.cache/
12+
.pytest_cache/
913
.tox/
1014

1115

.travis.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ python:
44
- "2.7"
55
- "3.5"
66
- "3.6"
7-
install: "make ci-init"
8-
script: "make ci"
7+
- "3.7"
8+
install: "script/setup"
9+
script: "script/ci"
910
cache: pip

CONTRIBUTING.md

Lines changed: 0 additions & 19 deletions
This file was deleted.

MANIFEST.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
include LICENSE.txt
22
include README.rst
33
include versioneer.py
4-
include ciscosparkapi/_version.py
4+
include webexteamssdk/_version.py

Makefile

Lines changed: 0 additions & 97 deletions
This file was deleted.

Pipfile

Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,19 @@
11
[[source]]
2-
32
url = "https://pypi.python.org/simple"
43
verify_ssl = true
54
name = "pypi"
65

7-
86
[packages]
9-
10-
"e1839a8" = {path = ".", editable = true}
11-
versioneer = "*"
12-
7+
"e1839a8" = {editable = true, path = "."}
138

149
[dev-packages]
15-
1610
versioneer = "*"
1711
sphinx = "*"
1812
sphinx-rtd-theme = "*"
1913
pytest = "*"
20-
tox = "*"
21-
virtualenv = "*"
22-
"flake8" = "*"
14+
flake8 = "*"
2315
twine = "*"
16+
ipython = "*"
17+
18+
[pipenv]
19+
allow_prereleases = true

0 commit comments

Comments
 (0)