-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
40 additions
and
14 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
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
[metadata] | ||
description-file = README.rst | ||
description_file = README.rst | ||
author = Aitor Gonzalez, Thomas Dechatre, Reda Mekdad, Emese Meglecz | ||
email = [email protected] | ||
copyright = Copyright (c) 2018-2022: Aitor Gonzalez, Thomas Dechatre, Reda Mekdad, Emese Meglecz | ||
|
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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
# -*- coding: UTF-8 -*- | ||
|
||
__author__ = "Aitor Gonzalez, Thomas Dechatre, Reda Mekdad, Emese Meglecz" | ||
__copyright__ = "Copyright 2018-2022, Aitor Gonzalez, Emese Meglecz" | ||
__author__ = "Aitor González, Raphael Hebert, Thomas Dechatre, Reda Mekdad, Ulysse Castet, Emese Meglecz" | ||
__copyright__ = "Copyright 2018-2022, Aitor González, Emese Meglecz" | ||
__email__ = "[email protected], [email protected]" | ||
__license__ = "MIT" | ||
|
||
|
@@ -18,8 +18,9 @@ | |
email = config['metadata']['email'] | ||
license = config['metadata']['license'] | ||
|
||
if sys.version_info < (3, 6): | ||
print("At least Python 3.6 is required.\n", file=sys.stderr) | ||
cutoff_version_info = (3, 7) | ||
if sys.version_info < cutoff_version_info: | ||
print("At least Python {}.{} is required.\n".format(cutoff_version_info[0], cutoff_version_info[1]), file=sys.stderr) | ||
exit(1) | ||
|
||
try: | ||
|
@@ -53,7 +54,6 @@ def get_version(rel_path): | |
License :: OSI Approved :: MIT License | ||
Programming Language :: Python | ||
Programming Language :: Python :: 3 | ||
Programming Language :: Python :: 3.6 | ||
Programming Language :: Python :: 3.7 | ||
Programming Language :: Python :: 3.8 | ||
Programming Language :: Python :: 3.9 | ||
|
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
__version__ = "0.1.22" | ||
__version__ = "0.2.0" | ||
|
||
import os | ||
import pathlib | ||
|