-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
61 lines (54 loc) · 1.56 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
import pathlib
from setuptools import setup
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:
long_description = fh.read()
with open("requirements.txt", "r") as f:
requirements = f.read().splitlines()
extras_require = {
"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.actions.drive",
"mipac.actions.users",
"mipac.errors",
"mipac.manager",
"mipac.manager.admins",
"mipac.manager.drive",
"mipac.manager.users",
"mipac.models",
"mipac.models.lite",
"mipac.types",
"mipac.utils",
]
setup(
name="mipac",
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
install_requires=requirements,
url="https://github.com/yupix/mipac",
author="yupix",
author_email="[email protected]",
license="MIT",
python_requires=">=3.12, <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.12",
"Natural Language :: Japanese",
"License :: OSI Approved :: MIT License",
],
extras_require=extras_require,
)