-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (23 loc) · 831 Bytes
/
Copy pathsetup.py
File metadata and controls
23 lines (23 loc) · 831 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from distutils.core import setup
import setuptools
setup(
name = 'python-cron',
packages = ['pycron'],
version = '1.0.1',
license='MIT',
description = 'A simple Python library providing cron functionality via the use of a single decorator.',
author = 'whdev1',
author_email = 'whdev1@protonmail.com',
url = 'https://github.com/whdev1/pycron',
download_url = 'https://github.com/whdev1/pycron/archive/refs/tags/v1.0.1.tar.gz',
keywords = ['pycron', 'cron', 'timed functions', 'automation'],
install_requires=['croniter'],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10'
],
)