-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
42 lines (39 loc) · 1.45 KB
/
setup.py
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="oncalendar",
version="1.1",
url="https://github.com/cuu508/oncalendar",
license="BSD",
author="Pēteris Caune",
author_email="[email protected]",
description="Systemd OnCalendar expression parser and evaluator",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
keywords="systemd,oncalendar,calendar,schedule",
packages=find_packages(),
include_package_data=True,
platforms="any",
python_requires=">= 3.10",
zip_safe=False,
project_urls={
"Changelog": "https://github.com/cuu508/oncalendar/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",
],
)