Skip to content

Commit

Permalink
Update package metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
thombashi committed Jan 5, 2020
1 parent ac4fd66 commit 469c6e1
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@
from excelrd.info import __VERSION__


MODULE_NAME = "excelrd"
REPOSITORY_URL = "https://github.com/thombashi/{:s}".format(MODULE_NAME)


def pytest_runner_requires() -> list:
if set(["pytest", "test", "ptr"]).intersection(sys.argv):
return ["pytest-runner"]
Expand All @@ -14,11 +18,13 @@ def pytest_runner_requires() -> list:
TESTS_REQUIRES = ["pytest"]

setup(
name = 'excelrd',
name = MODULE_NAME,
version = __VERSION__,
author = 'John Machin',
author_email = '[email protected]',
url = 'http://www.python-excel.org/',
maintainer="Tsuyoshi Hombashi",
maintainer_email="[email protected]",
url = 'https://github.com/thombashi/excelrd',
packages = ['excelrd'],
scripts = [
'scripts/runxlrd.py',
Expand All @@ -30,10 +36,9 @@ def pytest_runner_requires() -> list:
long_description = (
"Extract data from Excel spreadsheets "
"(.xls and .xlsx, versions 2.0 onwards) on any platform. "
"Pure Python (2.7, 3.4+). "
"Pure Python (3.5+). "
"Strong support for Excel dates. Unicode-aware."
),
platforms = ["Any platform -- don't need Windows"],
license = 'BSD',
keywords = ['xls', 'excel', 'spreadsheet', 'workbook'],
python_requires=">=3.5",
Expand Down

0 comments on commit 469c6e1

Please sign in to comment.