-
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.
* clean up setup.py * update pre-commit * removed unsued tox.ini and .editorconfig * updated badges * update readme * update readthedocs.yml
- Loading branch information
Showing
6 changed files
with
34 additions
and
91 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -7,7 +7,7 @@ | |
|
||
__author__ = "Carsten Ehbrecht" | ||
__contact__ = "[email protected]" | ||
__copyright__ = "Copyright 2018 United Kingdom Research and Innovation" | ||
__copyright__ = "Copyright 2023 United Kingdom Research and Innovation" | ||
__license__ = "BSD - see LICENSE file in top-level package directory" | ||
__version__ = "0.6.0" | ||
|
||
|
@@ -29,10 +29,6 @@ | |
"pytest", | ||
] | ||
|
||
setup_requirements = [ | ||
"pytest-runner", | ||
] | ||
|
||
|
||
setup( | ||
author=__author__, | ||
|
@@ -45,7 +41,6 @@ | |
"Environment :: Web Environment", | ||
"Intended Audience :: End Users/Desktop", | ||
"Intended Audience :: Developers", | ||
"Intended Audience :: System Administrators", | ||
"Intended Audience :: Science/Research", | ||
"License :: OSI Approved :: BSD License", | ||
"Natural Language :: English", | ||
|
@@ -60,30 +55,21 @@ | |
"Topic :: Internet", | ||
"Topic :: Scientific/Engineering", | ||
"Topic :: System :: Distributed Computing", | ||
"Topic :: System :: Systems Administration :: Authentication/Directory", | ||
"Topic :: Software Development :: Libraries :: Python Modules", | ||
], | ||
description="A client for roocs climate data operations service.", | ||
license=__license__, | ||
# This qualifier can be used to selectively exclude Python versions - | ||
# in this case early Python 2 and 3 releases | ||
# This qualifier can be used to selectively exclude Python versions | ||
python_requires=">=3.9.0", | ||
entry_points={ | ||
"console_scripts": [ | ||
"rooki=rooki.cli:main", | ||
], | ||
}, | ||
install_requires=[ | ||
requirements, | ||
# "pymetalink @ git+https://github.com/metalink-dev/pymetalink.git", | ||
], | ||
long_description=_long_description, | ||
long_description_content_type="text/x-rst", | ||
include_package_data=True, | ||
keywords="rooki", | ||
name="rooki", | ||
packages=find_packages(include=["rooki"]), | ||
setup_requires=setup_requirements, | ||
test_suite="tests", | ||
tests_require=test_requirements, | ||
url="https://github.com/roocs/rooki", | ||
|