Skip to content

Commit

Permalink
Update setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
thombashi committed Jul 31, 2017
1 parent 61ab5c4 commit e332ca5
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,23 +35,25 @@

needs_pytest = set(["pytest", "test", "ptr"]).intersection(sys.argv)
pytest_runner = ["pytest-runner"] if needs_pytest else []

PROJECT_NAME = "typepy"
MODULE_NAME = "typepy"

setuptools.setup(
name=PROJECT_NAME,
name=MODULE_NAME,
version="0.0.15",
url="https://github.com/thombashi/{:s}".format(PROJECT_NAME),
url="https://github.com/thombashi/{:s}".format(MODULE_NAME),

author="Tsuyoshi Hombashi",
author_email="tsuyoshi.hombashi@gmail.com",
description=summary,
include_package_data=True,
install_requires=install_requires,
keywords=["type", "validator", "converter"],
keywords=[
"library", "type-checking", "type-conversion", "validator",
],
license="MIT License",
long_description=long_description,
packages=setuptools.find_packages(exclude=["test*"]),

setup_requires=["setuptools>=20.2.2"] + pytest_runner,
tests_require=tests_requires,
extras_require={
Expand All @@ -74,5 +76,4 @@
"Programming Language :: Python :: 3.6",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)
])

0 comments on commit e332ca5

Please sign in to comment.