Change version to 1.0.0 and introduce beta status

This commit is contained in:
2020-02-11 09:01:10 +01:00
parent f0931daa67
commit 400c65eec8
2 changed files with 3 additions and 3 deletions

View File

@@ -1 +1 @@
__version__ = "0.0.9"
__version__ = "1.0.0"

View File

@@ -22,7 +22,7 @@ setup(name = "pyquarantine",
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
"Development Status :: 3 - Alpha",
"Development Status :: 4 - Beta",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
"Programming Language :: Python",
@@ -36,5 +36,5 @@ setup(name = "pyquarantine",
]
},
install_requires = ["pymilter", "netaddr", "beautifulsoup4[lxml]", "peewee"],
python_requires = ">=3"
python_requires = ">=3.6"
)