This repository was archived by the owner on Aug 26, 2021. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
executable file
·48 lines (44 loc) · 1.42 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
#!/usr/bin/env python3
# encoding: utf-8
from setuptools import setup
from __about__ import __version__
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="distest",
version=__version__,
description="Automate the testing of discord bots... With discord bots!",
long_description=long_description,
long_description_content_type="text/markdown",
url="http://github.com/JakeCover/distest",
author="Jake Cover",
author_email="[email protected]",
license="MIT",
packages=["distest", "distest.TestInterface"],
install_requires=["discord.py>=1.5.0,<1.8.0"],
zip_safe=False,
classifiers=[
'License :: OSI Approved :: MIT License',
'Intended Audience :: Developers',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Topic :: Internet',
"Topic :: Software Development :: Testing :: Unit",
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Utilities',
],
keywords=[
"Discord",
"Discord.py",
"Unit Test",
"Test",
"Distest",
"Discord Testing",
"Testing"
],
)