1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
|
# coding: utf-8
from __future__ import annotations
from setuptools import find_packages, setup
setup(
name="cronsim",
version="2.6",
url="https://github.com/cuu508/cronsim",
license="BSD",
author="Pēteris Caune",
author_email="cuu508@monkeyseemonkeydo.lv",
description="Cron expression parser and evaluator",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
keywords="cron,cronjob,crontab,schedule",
packages=find_packages(),
include_package_data=True,
platforms="any",
python_requires=">= 3.8",
zip_safe=False,
project_urls={
"Changelog": "https://github.com/cuu508/cronsim/blob/main/CHANGELOG.md"
},
classifiers=[
# As from http://pypi.python.org/pypi?%3Aaction=list_classifiers
# 'Development Status :: 1 - Planning',
# 'Development Status :: 2 - Pre-Alpha',
# "Development Status :: 3 - Alpha",
# "Development Status :: 4 - Beta",
"Development Status :: 5 - Production/Stable",
# 'Development Status :: 6 - Mature',
# 'Development Status :: 7 - Inactive',
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)
|