Merge pull request #233 from gene1wood/fix_setup.py

Fix setup.py longdescription
This commit is contained in:
Gene Wood 2022-12-16 14:13:02 -08:00 коммит произвёл GitHub
Родитель 88239be78c 0abb6cb0e9
Коммит dce7d04e0f
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -2,6 +2,7 @@
# License, v. 2.0. If a copy of the MPL was not distributed with this file, # License, v. 2.0. If a copy of the MPL was not distributed with this file,
# You can obtain one at http://mozilla.org/MPL/2.0/. # You can obtain one at http://mozilla.org/MPL/2.0/.
from os import path
from setuptools import setup, find_packages from setuptools import setup, find_packages
PACKAGE_NAME = 'tlscanary' PACKAGE_NAME = 'tlscanary'
@ -30,7 +31,7 @@ TESTS_REQUIRE = [
DEV_REQUIRES = TESTS_REQUIRE + SCHEDULER_REQUIRES DEV_REQUIRES = TESTS_REQUIRE + SCHEDULER_REQUIRES
with open(path.join(here, 'README.md'), encoding='utf-8') as f: with open(path.join(path.abspath(path.dirname(__file__)), 'README.md'), encoding='utf-8') as f:
long_description = f.read() long_description = f.read()
setup( setup(