From 1ce93382fe06662e9dfd5d830f529c57cd4d892b Mon Sep 17 00:00:00 2001 From: cneud Date: Sat, 9 Nov 2019 18:34:41 +0100 Subject: [PATCH] update setup.py --- tools/setup.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tools/setup.py b/tools/setup.py index beb79a3..f004ddf 100644 --- a/tools/setup.py +++ b/tools/setup.py @@ -5,16 +5,16 @@ with open('requirements.txt') as fp: install_requires = fp.read() setup( - name="ner-edith", + name="neath", version="0.0.1", author="", author_email="qurator@sbb.spk-berlin.de", - description="ner.edith", + description="neath", long_description=open("README.md", "r", encoding='utf-8').read(), long_description_content_type="text/markdown", keywords='qurator', - license='Apache', - url="https://github.com/cneud/ner.edith", + license='Apache License 2.0', + url="https://github.com/qurator-spk/neath", packages=find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]), install_requires=install_requires,