Skip to content

Commit 34c9288

Browse files
committed
chore: Update Domain class initialization arguments, version bumped to 1.4!
1 parent 24299c6 commit 34c9288

File tree

1 file changed

+29
-30
lines changed

1 file changed

+29
-30
lines changed

setup.py

Lines changed: 29 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -9,41 +9,40 @@
99
sys.path.append(src)
1010

1111

12-
meta = {
13-
"name": "fuzzylogic",
14-
"description": "Fuzzy Logic for Python 3",
15-
"license": "MIT",
16-
"url": "https://github.com/amogorkon/fuzzylogic",
17-
"version": "1.3.0",
18-
"author": "Anselm Kiefner",
19-
"author_email": "fuzzylogic-pypi@anselm.kiefner.de",
20-
"python_requires": ">=3.10",
21-
"keywords": [
22-
"fuzzy logic",
23-
],
24-
"classifiers": [
25-
"Development Status :: 4 - Beta",
26-
"Intended Audience :: Developers",
27-
"Intended Audience :: Education",
28-
"Intended Audience :: Manufacturing",
29-
"Intended Audience :: Science/Research",
30-
"Natural Language :: English",
31-
"License :: OSI Approved :: MIT License",
32-
"Operating System :: OS Independent",
33-
"Programming Language :: Python :: 3 :: Only",
34-
"Topic :: Scientific/Engineering :: Artificial Intelligence",
35-
"Topic :: Scientific/Engineering :: Mathematics",
36-
"Topic :: Scientific/Engineering :: Information Analysis",
37-
],
38-
}
12+
__license__ = "MIT"
13+
__version__ = "1.4.0"
14+
__author__ = "Anselm Kiefner"
15+
__contact__ = "fuzzylogic-pypi@anselm.kiefner.de"
3916

17+
classifiers = [
18+
"Development Status :: 5 - Production/Stable",
19+
"Intended Audience :: Developers",
20+
"Intended Audience :: Education",
21+
"Intended Audience :: Manufacturing",
22+
"Intended Audience :: Science/Research",
23+
"Natural Language :: English",
24+
"License :: OSI Approved :: MIT License",
25+
"Operating System :: OS Independent",
26+
"Programming Language :: Python :: 3 :: Only",
27+
"Topic :: Scientific/Engineering :: Artificial Intelligence",
28+
"Topic :: Scientific/Engineering :: Mathematics",
29+
"Topic :: Scientific/Engineering :: Information Analysis",
30+
]
4031

41-
LONG_DESCRIPTION = pathlib.Path("README.md").read_text()
4232
setup(
4333
packages=find_packages(where="src"),
4434
package_dir={"": "src"},
45-
long_description=LONG_DESCRIPTION,
35+
long_description=pathlib.Path("README.md").read_text(),
4636
long_description_content_type="text/markdown",
4737
zip_safe=False,
48-
**meta
38+
name="fuzzylogic",
39+
description="Fuzzy Logic for Python 3",
40+
license=__license__,
41+
url="https://github.com/amogorkon/fuzzylogic",
42+
version=__version__,
43+
author=__author__,
44+
author_email=__contact__,
45+
python_requires=">=3.12",
46+
keywords="fuzzy logic",
47+
classifiers=classifiers,
4948
)

0 commit comments

Comments
 (0)