-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
139 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[build-system] | ||
requires = ["setuptools"] | ||
build-backend = "setuptools.build_meta" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
[metadata] | ||
description = Weasel: A small and easy workflow system | ||
url = https://github.com/explosion/weasel/ | ||
author = Explosion | ||
author_email = [email protected] | ||
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/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
#!/usr/bin/env python | ||
|
||
if __name__ == "__main__": | ||
from setuptools import setup, find_packages | ||
|
||
setup(name="weasel", packages=find_packages()) |
Empty file.