From e7af54105cd8f2159d41e23cae6dc64c51460045 Mon Sep 17 00:00:00 2001 From: svlandeg Date: Tue, 27 Sep 2022 12:46:24 +0200 Subject: [PATCH] initial commit --- .gitignore | 98 ++++++++++++++++++++++++++++++++++++++++++++++ LICENSE | 12 +++--- pyproject.toml | 3 ++ setup.cfg | 26 ++++++++++++ setup.py | 6 +++ weasel/__init__.py | 0 6 files changed, 139 insertions(+), 6 deletions(-) create mode 100644 .gitignore create mode 100644 pyproject.toml create mode 100644 setup.cfg create mode 100644 setup.py create mode 100644 weasel/__init__.py diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..4731aa6 --- /dev/null +++ b/.gitignore @@ -0,0 +1,98 @@ +# Vim / VSCode / editors +*.swp +*.sw* +Profile.prof +.vscode +.sass-cache + +# Python +.Python +.python-version +__pycache__/ +.pytest_cache +*.py[cod] +.env/ +.env* +.~env/ +.venv +env3.6/ +venv/ +env3.*/ +.dev +.denv +.pypyenv +.pytest_cache/ +.mypy_cache/ +.hypothesis/ + +# Distribution / packaging +env/ +build/ +develop-eggs/ +dist/ +eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +wheelhouse/ +*.egg-info/ +pip-wheel-metadata/ +Pipfile.lock +.installed.cfg +*.egg +.eggs +MANIFEST +spacy/git_info.py + +# Temporary files +*.~* +tmp/ + +# Installer logs +pip-log.txt +pip-delete-this-directory.txt + +# Unit test / coverage reports +htmlcov/ +.tox/ +.coverage +.cache +nosetests.xml +coverage.xml + +# Translations +*.mo + +# Mr Developer +.mr.developer.cfg +.project +.pydevproject + +# Rope +.ropeproject + +# Django stuff: +*.log +*.pot + +# Windows +*.bat +Thumbs.db +Desktop.ini + +# Mac OS X +*.DS_Store + +# Komodo project files +*.komodoproject + +# Other +*.tgz + +# Pycharm project files +*.idea + +# IPython +.ipynb_checkpoints/ diff --git a/LICENSE b/LICENSE index 148de8d..40d04a0 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ -MIT License +The MIT License (MIT) -Copyright (c) 2022 Explosion +Copyright (C) 2022 ExplosionAI GmbH Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -9,13 +9,13 @@ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..fed528d --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,3 @@ +[build-system] +requires = ["setuptools"] +build-backend = "setuptools.build_meta" diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..3fb657c --- /dev/null +++ b/setup.cfg @@ -0,0 +1,26 @@ +[metadata] +description = Weasel: A small and easy workflow system +url = https://github.com/explosion/weasel/ +author = Explosion +author_email = contact@explosion.ai +license = MIT +long_description = file: README.md +long_description_content_type = text/markdown +classifiers = + Environment :: Console + Intended Audience :: Developers + Intended Audience :: Science/Research + License :: OSI Approved :: MIT License + Operating System :: POSIX :: Linux + Operating System :: MacOS :: MacOS X + Operating System :: Microsoft :: Windows + Programming Language :: Python :: 3 + Programming Language :: Python :: 3.6 + Programming Language :: Python :: 3.7 + Programming Language :: Python :: 3.8 + Programming Language :: Python :: 3.9 + Programming Language :: Python :: 3.10 + Topic :: Scientific/Engineering +project_urls = + Release notes = https://github.com/explosion/weasel/releases + Source = https://github.com/explosion/weasel/ \ No newline at end of file diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..0cb249a --- /dev/null +++ b/setup.py @@ -0,0 +1,6 @@ +#!/usr/bin/env python + +if __name__ == "__main__": + from setuptools import setup, find_packages + + setup(name="weasel", packages=find_packages()) \ No newline at end of file diff --git a/weasel/__init__.py b/weasel/__init__.py new file mode 100644 index 0000000..e69de29