From 1abf9ea7b73de808bbac2fe9f82392f51ea26990 Mon Sep 17 00:00:00 2001 From: cmungall Date: Thu, 9 Jun 2022 10:46:08 -0700 Subject: [PATCH] removing unused files --- requirements.txt | 18 ------------------ setup.py | 49 ------------------------------------------------ 2 files changed, 67 deletions(-) delete mode 100644 requirements.txt delete mode 100644 setup.py diff --git a/requirements.txt b/requirements.txt deleted file mode 100644 index d1515c4..0000000 --- a/requirements.txt +++ /dev/null @@ -1,18 +0,0 @@ -click >= 7.1.2 -dataclasses -linkml-runtime >= 1.1.5 -linkml >= 1.1.7 -mkdocs -pandas >= 1.2.3 -python-dateutil >= 2.8.1 -PyYAML >= 5.3.1 -rdflib == 5.0.0 -requests >= 2.25.1 -setuptools >= 54.2.0 -strsimpy >= 0.2.0 -psycopg2-binary -click_log -funowl >= 0.1.9 -quantulum3 -pytest -jsonpatch \ No newline at end of file diff --git a/setup.py b/setup.py deleted file mode 100644 index 1dd3b7b..0000000 --- a/setup.py +++ /dev/null @@ -1,49 +0,0 @@ -from setuptools import setup, find_packages - -NAME = 'schema_automator' -DESCRIPTION = 'toolkit that assists with generating LinkML schemas from existing serializations like JSON-schema' -URL = 'https://github.com/linkml/schema_automator' -AUTHOR = 'Mark Miller' -EMAIL = 'mam@lbl.gov' -REQUIRES_PYTHON = '>=3.7.0' -VERSION = '0.1.4' -LICENSE = 'BSD' - -with open("requirements.txt", "r") as FH: - REQUIREMENTS = FH.readlines() - -EXTRAS = {} - -setup( - name=NAME, - author=AUTHOR, - version=VERSION, - author_email=EMAIL, - python_requires=REQUIRES_PYTHON, - url=URL, - description=DESCRIPTION, - license=LICENSE, - packages=find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]), - include_package_data=True, - keywords='linkml', - classifiers=[ - 'Intended Audience :: Science/Research', - 'Topic :: Scientific/Engineering :: Bio-Informatics', - 'License :: OSI Approved :: BSD License', - 'Programming Language :: Python :: 3' - ], - install_requires=[r for r in REQUIREMENTS if not r.startswith("#")], - extras_require=EXTRAS, - entry_points={ - 'console_scripts': ['annotate-enums=schema_automator.annotators.enum_annotator:clickmain', - 'annotate-schema=schema_automator.annotators.schema_annotator:annotate_schema', - 'tsv2linkml=schema_automator.importers.csv_import_engine:tsv2model', - 'tsvs2linkml=schema_automator.importers.csv_import_engine:tsvs2model', - 'rdf2linkml=schema_automator.importers.rdf_instance_import_engine:rdf2model', - 'owl2linkml=schema_automator.importers.owl_import_engine:owl2model', - 'dosdp2linkml=schema_automator.importers.owl_import_engine:dosdp2model', - 'jsondata2linkml=schema_automator.importers.json_instance_import_engine:json2model', - 'jsonschema2linkml=schema_automator.importers.jsonschema_import_engine:jsonschema2model', - ] - }, -)