소스 검색

#68: make sure all parameters to setup() are str

pull/77/head
Merlijn van Deen 10 년 전
부모
커밋
e2a59164bb
1개의 변경된 파일3개의 추가작업 그리고 1개의 파일을 삭제
  1. +3
    -1
      setup.py

+ 3
- 1
setup.py 파일 보기

@@ -45,7 +45,9 @@ setup(
ext_modules = [tokenizer],
tests_require = ["unittest2"] if py26 else [],
test_suite = "tests.discover",
version = __version__,
# python 2 bdist_msi *requires* a str 'ProductName'; prevent upcasting
# to 'unicode' by explicitly making __version__ str.
version = str(__version__),
author = "Ben Kurtovic",
author_email = "ben.kurtovic@gmail.com",
url = "https://github.com/earwig/mwparserfromhell",


불러오는 중...
취소
저장