forked from kipe/pycron
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Drop support for Python 2 and 3.4, bump version to 3.0.0
Drop support for Python 2, bump version to 3.0.0
- Loading branch information
Showing
4 changed files
with
36 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,12 +3,25 @@ | |
|
||
setup( | ||
name='pycron', | ||
version='1.0.0', | ||
version='3.0.0', | ||
description='Simple cron-like parser, which determines if current datetime matches conditions.', | ||
author='Kimmo Huoman', | ||
author_email='[email protected]', | ||
license='MIT', | ||
keywords='cron parser', | ||
url='https://github.com/kipe/pycron', | ||
packages=[ | ||
'pycron', | ||
], | ||
python_requires='>=3.5', | ||
tests_require=[ | ||
"arrow>=0.12.0", | ||
"coverage>=4.4.2", | ||
"coveralls>=1.2.0", | ||
"Delorean>=0.6.0", | ||
"nose>=1.0", | ||
"pendulum>=1.3.2", | ||
"pytz>=2017.3", | ||
"udatetime>=0.0.14" | ||
] | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters