-
Notifications
You must be signed in to change notification settings - Fork 26
/
setup.py
36 lines (28 loc) · 857 Bytes
/
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
# -*- coding: utf-8 -*-
import os
from setuptools import setup
version = '1.5.1'
with open(os.path.join(os.path.dirname(__file__), 'README.md')) as readme:
README = readme.read()
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
setup(
name='django-slack-oauth',
version=version,
packages=[
'django_slack_oauth',
'django_slack_oauth.migrations',
],
include_package_data=True,
license='MIT License',
description='Handles OAuth and stores slack token',
long_description=README,
author='Sergey Keller',
author_email='izdieu@gmail.com',
url='https://github.com/izdi/django-slack-oauth',
download_url='https://github.com/izdi/django-slack-oauth/tarball/1.5.0',
install_requires=[
'Django>=1.8',
'requests',
'jsonfield',
],
)