forked from Sonic0/local-crontab
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (34 loc) · 1.17 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
from setuptools import setup
with open('README.md', encoding='utf-8') as f:
readme = f.read()
setup(
name='local-crontab',
version='0.3.0',
license='MIT',
description='Convert local crontabs to UTC crontabs',
long_description=readme,
long_description_content_type='text/markdown',
author='Andrea Salvatori',
author_email='andrea.salvatori92@gmail.com',
url='https://github.com/Sonic0/local-crontab',
packages=['local_crontab'],
keywords='cron, timezone, utc',
install_requires=['cron-converter', 'click', 'python-dateutil'],
include_package_data=True,
extras_require={
'test': ['unittest'],
},
entry_points={
'console_scripts': ['local-crontab=local_crontab.cmd_line:main'],
},
classifiers=[
'Development Status :: 3 - Alpha',
'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',
)