Skip to content

Commit 8f037a9

Browse files
author
Russell Hay
committed
Adding override for pycodestyle/pep8 and moving test files around
1 parent 4a09dfa commit 8f037a9

File tree

5 files changed

+13
-3
lines changed

5 files changed

+13
-3
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,3 +63,4 @@ target/
6363

6464
#Other things
6565
.DS_Store
66+
.idea

setup.cfg

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
[wheel]
2+
universal = 1
3+
4+
[pycodestyle]
5+
select =
6+
max_line_length = 120
7+
8+
[pep8]
9+
max_line_length = 120

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@
55

66
setup(
77
name='tableaudocumentapi',
8-
version='0.0.1',
9-
summary='A Python module for working with Tableau files.',
8+
version='0.1.0-dev',
109
author='Tableau Software',
1110
author_email='github@tableau.com',
1211
url='https://github.com/tableau/document-api-python',
1312
py_modules=['tableaudocumentapi'],
1413
license='MIT',
15-
description='A Python module for working with Tableau files.'
14+
description='A Python module for working with Tableau files.',
15+
test_suite='test'
1616
)

test/__init__.py

Whitespace-only changes.

test.py renamed to test/bvt.py

File renamed without changes.

0 commit comments

Comments
 (0)