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,