-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* skip .po and .properties files * pin pyinstaller to 5.13 Co-authored-by: Andy Young <[email protected]>
- Loading branch information
1 parent
01fb8f3
commit 19aabf5
Showing
6 changed files
with
127 additions
and
110 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -50,4 +50,5 @@ workon | |
test.junit.xml | ||
|
||
# exceptions | ||
!tests/assets/detailed_users.csv | ||
!tests/assets/detailed_users.csv | ||
est |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,7 @@ packages = ["tabcmd"] | |
tabcmd = ["tabcmd.locales/**/*.mo"] | ||
[tool.black] | ||
line-length = 120 | ||
target-version = ['py37', 'py38', 'py39', 'py310', 'py311'] | ||
target-version = ['py38', 'py39', 'py310', 'py311'] | ||
extend-exclude = '^/bin/*' | ||
[tool.mypy] | ||
disable_error_code = [ | ||
|
@@ -29,17 +29,15 @@ dynamic = ["version"] | |
description="A command line client for working with Tableau Server." | ||
authors = [{name="Tableau", email="[email protected]"}] | ||
license = {file = "LICENSE"} | ||
readme = "README.md" | ||
readme = "res/README.md" | ||
requires-python = ">=3.7" # https://devguide.python.org/versions/ | ||
classifiers = [ | ||
"Programming Language :: Python", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.7", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python :: 3.12" | ||
"Programming Language :: Python :: 3.11" | ||
] | ||
dependencies = [ | ||
'argparse', | ||
|
@@ -68,7 +66,7 @@ test = [ | |
"pytest-runner", | ||
"requests-mock>=1.0,<2.0"] | ||
localize = ["doit", "ftfy"] | ||
package = ["pyinstaller>=5.1", "doit"] | ||
package = ["pyinstaller==5.13", "doit"] | ||
[project.urls] | ||
repository = "https://github.com/tableau/tabcmd" | ||
[project.scripts] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
|
||
This program is an executable command-line utility which you can use to automate activity on Tableau Cloud or Tableau Server. | ||
|
||
For instructions on how to use it, launch the app on a command line with 'tabcmd -h'. | ||
For updates, bug reports and help, visit https://tableau.github.io/tabcmd/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters