forked from aiotter/ddiscord
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (33 loc) · 1.03 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
from setuptools import setup
from pathlib import Path
here = Path(__file__).parent
with (here/'README.md').open(encoding='utf-8') as f:
long_description = f.read()
setup(
name='ddiscord',
version='0.2.3',
description='Debugger for discord.py',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/aiotter/ddiscord',
author='aiotter',
author_email='[email protected]',
license='MIT',
python_requires='>=3.6, <4',
py_modules=['ddiscord'],
install_requires=['discord.py>=0.16.7'],
entry_points={
'console_scripts':[
'ddiscord = ddiscord:main',
]
},
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
],
)