Skip to content

Commit

Permalink
💄 update setup and coding style
Browse files Browse the repository at this point in the history
  • Loading branch information
chfw committed Oct 8, 2020
1 parent bb57139 commit 3f746aa
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 6 deletions.
2 changes: 2 additions & 0 deletions pyexcel-xlsx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,5 @@ test_dependencies:
- pyexcel
description: A wrapper library to read, manipulate and write data in xlsx and xlsm format
moban_command: false
python_requires: ">=3.6"
min_python_version: "3.6"
1 change: 0 additions & 1 deletion pyexcel_xlsx/xlsxr.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
:license: New BSD License
"""
from io import BytesIO
from collections import OrderedDict

import openpyxl
from pyexcel_io.plugin_api import ISheet, IReader, NamedContent
Expand Down
12 changes: 7 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,18 +48,19 @@
"Topic :: Software Development :: Libraries",
"Programming Language :: Python",
"Intended Audience :: Developers",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",

"Programming Language :: Python :: 3 :: Only",



"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",

'Programming Language :: Python :: Implementation :: PyPy'
]

PYTHON_REQUIRES = ">=3.6"

INSTALL_REQUIRES = [
"openpyxl>=2.6.1",
Expand Down Expand Up @@ -193,6 +194,7 @@ def filter_out_test_code(file_handle):
long_description=read_files(*FILES),
license=LICENSE,
keywords=KEYWORDS,
python_requires=PYTHON_REQUIRES,
extras_require=EXTRAS_REQUIRE,
tests_require=["nose"],
install_requires=INSTALL_REQUIRES,
Expand Down

0 comments on commit 3f746aa

Please sign in to comment.