-
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.
✨ Add
more-itertools
for extras require
- Loading branch information
Showing
2 changed files
with
54 additions
and
21 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,40 +8,43 @@ | |
setup, | ||
) | ||
|
||
packages = find_packages('src') | ||
packages = find_packages("src") | ||
|
||
here = os.path.abspath(os.path.dirname(__file__)) | ||
|
||
with io.open(os.path.join(here, 'README.md'), encoding='utf-8') as f: | ||
long_description = '\n' + f.read() | ||
with io.open(os.path.join(here, "README.md"), encoding="utf-8") as f: | ||
long_description = "\n" + f.read() | ||
|
||
# noinspection SpellCheckingInspection | ||
setup( | ||
name='arko-wrapper', | ||
name="arko-wrapper", | ||
description="给你的Python迭代器加上魔法", | ||
version='0.2.8', | ||
long_description=long_description, | ||
long_description_content_type='text/markdown', | ||
author='Arko', | ||
author_email='[email protected]', | ||
python_requires='>=3.7', | ||
url='https://github.com/ArkoClub/ArkoWrapper', | ||
long_description_content_type="text/markdown", | ||
author="Arko", | ||
author_email="[email protected]", | ||
python_requires=">=3.7", | ||
url="https://github.com/ArkoClub/ArkoWrapper", | ||
packages=packages, | ||
package_dir={"": "src"}, | ||
install_requires=['typing_extensions'], | ||
install_requires=["typing_extensions"], | ||
extras_require={ | ||
'test': ['pytest', 'pytest-rerunfailures'], | ||
"test": ["pytest", "pytest-rerunfailures"], | ||
"more": ["more-itertools"], | ||
}, | ||
include_package_data=True, | ||
license='MIT', | ||
license="MIT", | ||
classifiers=[ | ||
'License :: OSI Approved :: MIT License', | ||
'Programming Language :: Python', | ||
'Programming Language :: Python :: 3', | ||
'Programming Language :: Python :: 3.7', | ||
'Programming Language :: Python :: 3.8', | ||
'Programming Language :: Python :: 3.9', | ||
'Programming Language :: Python :: 3.10', | ||
'Programming Language :: Python :: Implementation :: CPython', | ||
] | ||
"License :: OSI Approved :: MIT License", | ||
"Programming Language :: Python", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.7", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python :: 3.12", | ||
"Programming Language :: Python :: Implementation :: CPython", | ||
], | ||
) |
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