Skip to content

Commit

Permalink
chore: format
Browse files Browse the repository at this point in the history
  • Loading branch information
yupix committed Nov 25, 2023
1 parent d4a1048 commit 2f3618e
Showing 1 changed file with 30 additions and 30 deletions.
60 changes: 30 additions & 30 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,54 +4,54 @@

import versioneer

description = 'A Python wrapper for the Misskey API'
readme_file = pathlib.Path(__file__).parent / 'README.md'
with readme_file.open(encoding='utf-8') as fh:
description = "A Python wrapper for the Misskey API"
readme_file = pathlib.Path(__file__).parent / "README.md"
with readme_file.open(encoding="utf-8") as fh:
long_description = fh.read()

with open('requirements.txt', 'r') as f:
with open("requirements.txt", "r") as f:
requirements = f.read().splitlines()

extras_require = {
'dev': ['isort', 'mypy', 'flake8', 'pre-commit', 'ruff'],
'ci': ['flake8', 'mypy', 'ruff'],
'speed': ['orjson'],
'doc': ['sphinx', 'furo', 'sphinxcontrib_trio', 'sphinx-intl', 'numpydoc'],
"dev": ["isort", "mypy", "pre-commit", "ruff"],
"ci": ["mypy", "ruff"],
"speed": ["orjson"],
"doc": ["sphinx", "furo", "sphinxcontrib_trio", "sphinx-intl", "numpydoc"],
}

packages = [
'mipac',
'mipac.abstract',
'mipac.actions',
'mipac.actions.admins',
'mipac.errors',
'mipac.manager',
'mipac.manager.admins',
'mipac.models',
'mipac.types',
'mipac.models.lite',
'mipac.utils'
"mipac",
"mipac.abstract",
"mipac.actions",
"mipac.actions.admins",
"mipac.errors",
"mipac.manager",
"mipac.manager.admins",
"mipac.models",
"mipac.types",
"mipac.models.lite",
"mipac.utils",
]

setup(
name='mipac',
name="mipac",
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
install_requires=requirements,
url='https://github.com/yupix/mipac',
author='yupix',
author_email='yupi0982@outlook.jp',
license='MIT',
python_requires='>=3.11, <4.0',
url="https://github.com/yupix/mipac",
author="yupix",
author_email="yupi0982@outlook.jp",
license="MIT",
python_requires=">=3.11, <4.0",
description=description,
long_description=long_description,
long_description_content_type='text/markdown',
long_description_content_type="text/markdown",
packages=packages,
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Programming Language :: Python :: 3.11',
'Natural Language :: Japanese',
'License :: OSI Approved :: MIT License',
"Development Status :: 2 - Pre-Alpha",
"Programming Language :: Python :: 3.11",
"Natural Language :: Japanese",
"License :: OSI Approved :: MIT License",
],
extras_require=extras_require,
)

0 comments on commit 2f3618e

Please sign in to comment.