|
7 | 7 | from setuptools import find_packages |
8 | 8 | from setuptools import setup |
9 | 9 |
|
| 10 | + |
| 11 | + |
10 | 12 | meta={ |
11 | 13 | "name":"fuzzylogic", |
12 | 14 | "description":"Fuzzy Logic for Python 3", |
13 | 15 | "license":"MIT", |
14 | 16 | "url":"https://github.com/amogorkon/fuzzylogic", |
15 | | - "version":"0.1.2.post3", |
| 17 | + "version":"0.1.2.post4", |
16 | 18 | "author":"Anselm Kiefner", |
17 | 19 | "author_email":"fuzzylogic-pypi@anselm.kiefner.de", |
18 | 20 | "python_requires":">3.6", |
19 | 21 | "keywords":["fuzzy logic",], |
20 | 22 | "classifiers":[ |
21 | | - "Development Status :: 4 - Beta" |
22 | | - "Intended Audience :: Developers" |
23 | | - "Intended Audience :: Education" |
24 | | - "Intended Audience :: Manufacturing" |
25 | | - "Intended Audience :: Science/Research" |
26 | | - "Natural Language :: English" |
27 | | - "License :: OSI Approved :: MIT License" |
28 | | - "Operating System :: OS Independent" |
29 | | - "Programming Language :: Python :: 3 :: Only" |
30 | | - "Topic :: Scientific/Engineering :: Artificial Intelligence" |
31 | | - "Topic :: Scientific/Engineering :: Mathematics" |
32 | | - "Topic :: Scientific/Engineering :: Information Analysis" |
| 23 | + "Development Status :: 4 - Beta", |
| 24 | + "Intended Audience :: Developers", |
| 25 | + "Intended Audience :: Education", |
| 26 | + "Intended Audience :: Manufacturing", |
| 27 | + "Intended Audience :: Science/Research", |
| 28 | + "Natural Language :: English", |
| 29 | + "License :: OSI Approved :: MIT License", |
| 30 | + "Operating System :: OS Independent", |
| 31 | + "Programming Language :: Python :: 3 :: Only", |
| 32 | + "Topic :: Scientific/Engineering :: Artificial Intelligence", |
| 33 | + "Topic :: Scientific/Engineering :: Mathematics", |
| 34 | + "Topic :: Scientific/Engineering :: Information Analysis", |
33 | 35 | ] |
34 | 36 | } |
35 | 37 |
|
| 38 | + |
| 39 | + |
36 | 40 | with open("README.md") as f: |
37 | 41 | LONG_DESCRIPTION = f.read() |
38 | 42 |
|
|
0 commit comments