-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
30 lines (29 loc) · 1.08 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
from setuptools import setup, find_packages
setup(
name='django-slack-integration',
version='0.0.1',
description='Slack integration for Django.',
author='Quantum',
author_email='[email protected]',
url='https://github.com/DMOJ/django-slack-integration',
keywords='django slack messaging',
packages=find_packages(),
include_package_data=True,
license='GNU AGPLv3',
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: GNU Affero General Public License v3',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development',
'Topic :: Communications :: Chat',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development :: User Interfaces',
],
install_requires=['django', 'requests', 'django-solo'],
zip_safe=False,
)