You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mipac/setup.py

60 lines
1.3 KiB

2 years ago
import pathlib
from setuptools import setup
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:
requirements = f.read().splitlines()
extras_require = {
'dev': [
'axblack',
'isort',
'mypy',
'pyproject-flake8'
],
'ci': [
'pyproject-flake8',
'mypy'
2 years ago
]
}
packages = [
'mipac',
'mipac.abc',
'mipac.actions',
'mipac.core',
'mipac.core.models',
'mipac.manager',
'mipac.manager.admin',
'mipac.models',
'mipac.types'
]
setup(
name="mipac",
version="0.0.2",
2 years ago
install_requires=requirements,
url="https://github.com/yupix/mipac",
2 years ago
author="yupix",
author_email="yupi0982@outlook.jp",
license="MIT",
python_requires=">=3.10, <4.0",
description=description,
long_description=long_description,
long_description_content_type="text/markdown",
packages=packages,
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Programming Language :: Python :: 3.10",
"Natural Language :: Japanese",
"License :: OSI Approved :: MIT License",
],
extras_require=extras_require,
)