forked from juanpabloaj/slacker-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (29 loc) · 783 Bytes
/
setup.py
File metadata and controls
33 lines (29 loc) · 783 Bytes
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
#!/usr/bin/python
# -*- coding: utf-8 -*-
import os
from setuptools import setup
def read(*paths):
""" read files """
with open(os.path.join(*paths), 'r') as filename:
return filename.read()
setup(
name="slacker-cli",
version="0.0.5",
description="Send messages to slack from command line",
long_description=(read('README.rst')),
url="https://github.com/juanpabloaj/slacker-cli",
install_requires=['slacker >= 0.0.3'],
license='MIT',
author="JuanPablo AJ",
author_email="jpabloaj@gmail.com",
packages=['slacker_cli'],
test_suite="tests",
entry_points={
'console_scripts': [
'slacker=slacker_cli:main',
],
},
classifiers=[
'Programming Language :: Python :: 2.7',
]
)