-
Notifications
You must be signed in to change notification settings - Fork 97
/
Copy pathsetup.py
32 lines (30 loc) · 789 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
from setuptools import setup, find_packages
with open('README.md', 'r') as readme:
long_description = readme.read()
setup(
name='sclack',
version='1.0',
license='GPL3',
description='The best CLI client for Slack, because everything is terrible',
long_description=long_description,
author='Marcelo Camargo',
author_email='marcelocamargo@linuxmail.org',
url='https://github.com/haskellcamargo/sclack',
entry_points={
'console_scripts': [
'sclack=sclack.app:run',
],
},
package_data={
'sclack': ['config.json']
},
packages=find_packages(),
install_requires=[
'asyncio',
'urwid>2',
'pyperclip',
'requests',
'slackclient',
'urwid_readline'
]
)