Skip to content

Commit 6fd271d

Browse files
committed
Calling Rule normalizes to target domain by default
1 parent 81dfdf1 commit 6fd271d

File tree

9 files changed

+522
-388
lines changed

9 files changed

+522
-388
lines changed

docs/Showcase.ipynb

Lines changed: 71 additions & 69 deletions
Large diffs are not rendered by default.

pytest.ini

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
[pytest]
22
addopts = --doctest-modules
3-
norecursedirs = box
3+
norecursedirs = box
4+
testpaths = tests

setup.py

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,25 @@
1-
21
import os
32
import sys
43

5-
here = (os.path.abspath(os.path.dirname(__file__)))
4+
here = os.path.abspath(os.path.dirname(__file__))
65
src = os.path.join(here, "src/fuzzylogic")
76
sys.path.append(src)
87

98
from setuptools import find_packages, setup
109

11-
meta={
12-
"name":"fuzzylogic",
13-
"description":"Fuzzy Logic for Python 3",
14-
"license":"MIT",
15-
"url":"https://github.com/amogorkon/fuzzylogic",
16-
"version":"1.0.1",
17-
"author":"Anselm Kiefner",
18-
"author_email":"fuzzylogic-pypi@anselm.kiefner.de",
19-
"python_requires":">=3.8",
20-
"keywords":["fuzzy logic",],
21-
"classifiers":[
10+
meta = {
11+
"name": "fuzzylogic",
12+
"description": "Fuzzy Logic for Python 3",
13+
"license": "MIT",
14+
"url": "https://github.com/amogorkon/fuzzylogic",
15+
"version": "1.1.0",
16+
"author": "Anselm Kiefner",
17+
"author_email": "fuzzylogic-pypi@anselm.kiefner.de",
18+
"python_requires": ">=3.8",
19+
"keywords": [
20+
"fuzzy logic",
21+
],
22+
"classifiers": [
2223
"Development Status :: 4 - Beta",
2324
"Intended Audience :: Developers",
2425
"Intended Audience :: Education",
@@ -31,14 +32,13 @@
3132
"Topic :: Scientific/Engineering :: Artificial Intelligence",
3233
"Topic :: Scientific/Engineering :: Mathematics",
3334
"Topic :: Scientific/Engineering :: Information Analysis",
34-
]
35+
],
3536
}
3637

3738

38-
3939
with open("README.md") as f:
4040
LONG_DESCRIPTION = f.read()
41-
41+
4242
setup(
4343
packages=find_packages(where="src"),
4444
package_dir={"": "src"},

src/.vscode/settings.json

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"python.testing.pytestArgs": [
3+
"."
4+
],
5+
"python.testing.unittestEnabled": false,
6+
"python.testing.pytestEnabled": true,
7+
"python.testing.unittestArgs": [
8+
"-v",
9+
"-s",
10+
".",
11+
"-p",
12+
"test_*.py"
13+
]
14+
}

0 commit comments

Comments
 (0)