Skip to content

Commit c49c38d

Browse files
committed
fixed meta
1 parent a512599 commit c49c38d

File tree

1 file changed

+17
-13
lines changed

1 file changed

+17
-13
lines changed

setup.py

Lines changed: 17 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -7,32 +7,36 @@
77
from setuptools import find_packages
88
from setuptools import setup
99

10+
11+
1012
meta={
1113
"name":"fuzzylogic",
1214
"description":"Fuzzy Logic for Python 3",
1315
"license":"MIT",
1416
"url":"https://github.com/amogorkon/fuzzylogic",
15-
"version":"0.1.2.post3",
17+
"version":"0.1.2.post4",
1618
"author":"Anselm Kiefner",
1719
"author_email":"fuzzylogic-pypi@anselm.kiefner.de",
1820
"python_requires":">3.6",
1921
"keywords":["fuzzy logic",],
2022
"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",
3335
]
3436
}
3537

38+
39+
3640
with open("README.md") as f:
3741
LONG_DESCRIPTION = f.read()
3842

0 commit comments

Comments
 (0)