|
9 | 9 | sys.path.append(src) |
10 | 10 |
|
11 | 11 |
|
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" |
39 | 16 |
|
| 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 | +] |
40 | 31 |
|
41 | | -LONG_DESCRIPTION = pathlib.Path("README.md").read_text() |
42 | 32 | setup( |
43 | 33 | packages=find_packages(where="src"), |
44 | 34 | package_dir={"": "src"}, |
45 | | - long_description=LONG_DESCRIPTION, |
| 35 | + long_description=pathlib.Path("README.md").read_text(), |
46 | 36 | long_description_content_type="text/markdown", |
47 | 37 | 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, |
49 | 48 | ) |
0 commit comments