forked from brilliantorg/django-slackin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
43 lines (37 loc) · 1.39 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
from setuptools import setup, find_packages
README = """
* PyPI: https://pypi.python.org/pypi/django-slackin-public
* Code: https://github.com/mtlpy/django-slackin-public
* |travis-ci|
.. |travis-ci| image::
https://travis-ci.org/mtlpy/django-slackin-public.svg?branch=master
:target: https://travis-ci.org/mtlpy/django-slackin-public
:alt: Tests on Travis-CI
`More information on Github <https://github.com/mtlpy/django-slackin-public/blob/master/README.md>`_.
"""
VERSION = '0.1.0' # maintained by release tool
setup(
name='django-slackin-public',
version=VERSION,
packages=find_packages(),
include_package_data=True,
license='MIT License',
description='Slack invitation page for Django (like rauchg/slackin)',
long_description=README,
url='https://github.com/mtlpy/django-slackin-public',
author='Pior Bastida',
author_email='[email protected]',
classifiers=[
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
],
install_requires=['slackclient'],
)