-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
55 lines (54 loc) · 1.73 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
from setuptools import setup, find_packages
setup(
name="helply",
version="0.6.2",
description="A library that simplifies 'help' command creation for application commands in your discord bot.",
author="DLCHAMP",
author_email="[email protected]",
license="MIT",
url="https://github.com/dlchamp/helply",
packages=find_packages(where="src"),
package_dir={"": "src"},
classifiers=[
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
"Typing :: Typed",
],
python_requires=">=3.8.1,<4.0",
install_requires=[
"disnake>=2.9.2",
],
extras_require={
"dev": [
"ruff>=0.0.275",
"black>=23.3.0",
"isort>=5.12.0",
"pre-commit>=3.3.3",
"pyright>=1.1.318",
"python-dotenv>=1.0.0",
"poetry-setup>=0.3.6",
],
"docs": [
"mkdocs>=1.5.1",
"mkdocs-markdownextradata-plugin>=0.2.5",
"mkdocstrings[python]>=0.22.0",
"mkdocs-material>=9.1.21",
"mkdocs-autorefs>=0.4.1",
"mkdocs-gen-files>=0.5.0",
"mkdocs-literate-nav>=0.6.0",
"mkdocs-minify-plugin>=0.7.1",
],
"lint": [
"disnake>=2.9.0",
],
},
)