-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
43 lines (39 loc) · 1012 Bytes
/
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
# encoding: utf-8
from os import path
from setuptools import find_packages, setup
deps = [
"ruamel.yaml",
"click",
"jishaku",
"discord.py",
"typing_extensions",
]
setup(
name="discord.py-lifesaver",
version="0.0.0",
author="slice",
license="MIT",
keywords="discord discord.py",
description=(
"An opinionated bot framework, foundation, and utility library "
"for Discord.py. Aims to reduce boilerplate."
),
url="https://github.com/slice/lifesaver",
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
],
package_data={"lifesaver": ["py.typed"]},
python_requires=">=3.7",
packages=find_packages(),
install_requires=deps,
extras_require={
"docs": [
"sphinx==1.8.1",
"sphinxcontrib-napoleon==0.7",
"sphinxcontrib-asyncio==0.2.0",
],
},
zip_safe=False,
)