-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
39 lines (34 loc) · 1.03 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
import pathlib
from setuptools import setup
README_PATH = pathlib.Path(__file__).parent / 'README.adoc'
setup(
name='slack-report',
version='0.1.0',
description="report output of command to slack channel",
long_description=README_PATH.read_text(),
# don't worry about rendering content for now
long_description_content_type='text/plain',
author="Jesse London",
author_email='[email protected]',
license='BSD 3-Clause',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Natural Language :: English',
'Programming Language :: Python :: 3.7',
],
url="https://github.com/dssg/slack-report",
python_requires='>=3.7',
package_dir={'': 'src'},
py_modules=['slack_report'],
install_requires=[
'argcmdr==0.6.0',
'requests==2.22.0',
],
entry_points={
'console_scripts': [
'slack-report = slack_report:main',
],
},
)