-
Notifications
You must be signed in to change notification settings - Fork 14
/
setup.py
40 lines (32 loc) · 1.06 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
#!/usr/bin/python
import os
from setuptools import setup
def read(*paths):
"""read files"""
with open(os.path.join(*paths)) as filename:
return filename.read()
install_requires = read("requirements.txt").splitlines()
setup(
name="slacker-cli",
version="0.4.2",
description="Send messages to slack from command line",
long_description=(read("README.rst")),
url="https://github.com/juanpabloaj/slacker-cli",
install_requires=install_requires,
license="MIT",
author="JuanPablo AJ",
author_email="[email protected]",
packages=["slacker_cli"],
test_suite="tests",
entry_points={"console_scripts": ["slacker=slacker_cli:main"]},
python_requires=">=3.7",
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
)