-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
35 lines (33 loc) · 1.24 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
from setuptools import find_packages, setup
with open('README.md') as f:
readme = f.read()
setup(
name='django-discord-integration',
version='1.2.8',
author='Evan Zhang',
install_requires=[
'urllib3',
'django-stubs-ext',
],
description='Discord integration for Django, supporting error reporting via webhooks.',
long_description=readme,
long_description_content_type='text/markdown',
url='https://github.com/Ninjaclasher/django-discord-integration',
packages=find_packages(),
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)',
'Operating System :: OS Independent',
'Topic :: Software Development',
'Topic :: Communications :: Chat',
'Topic :: Software Development :: Libraries :: Python Modules',
'Programming Language :: Python',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.7',
],
)