forked from Sonic0/cron-converter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (29 loc) · 1.05 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
from setuptools import setup, find_packages
setup(
name='cron-converter',
version='1.0.2',
license='MIT License',
description='Cron string parser and scheduler for Python',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
author='Andrea Salvatori',
author_email='[email protected]',
url='https://github.com/Sonic0/cron-converter',
packages=['cron_converter', 'cron_converter/sub_modules'],
keywords='cron',
install_requires=['python-dateutil'],
include_package_data=True,
extras_require={
'test': ['unittest'],
},
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Software Development :: Libraries :: Python Modules'
],
python_requires='>=3.8',
)