-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
39 lines (36 loc) · 1.13 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
# type: ignore
import setuptools
from wikitools_cli.VERSION import VERSION
with open("README.md", "r", encoding="utf-8") as fd:
long_description = fd.read()
setuptools.setup(
name="osu-wiki-tools",
version=VERSION,
author="Walavouchey",
author_email="[email protected]",
description="Various tools for osu! wiki contributors",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Walavouchey/osu-wiki-tools",
project_urls={
"Bug Tracker": "https://github.com/Walavouchey/osu-wiki-tools/issues"
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
test_suite="tests",
packages=setuptools.find_packages(exclude=["tests", "tests.visual"]),
entry_points={
"console_scripts": [
"osu-wiki-tools=wikitools_cli.osu_wiki_tools:console_main",
],
},
python_requires=">=3.11",
install_requires=[
"PyYAML==6.0.1",
"types-PyYAML==6.0.12.12",
"yamllint==1.33.0",
],
)