-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·58 lines (52 loc) · 1.86 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
import os
from setuptools import setup
# read in README
this_dir = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(this_dir, 'README.md'), 'rb') as f:
long_description = f.read().decode().strip()
# requirements
install_requires = [
"hop-client >= 0.0.5a1", "requests", "slackclient"
]
extras_require = {
'dev': ['pytest', 'pytest-console-scripts', 'pytest-cov', 'flake8', 'flake8-black', 'pytest-datadir'],
'docs': ['sphinx', 'sphinx_rtd_theme', 'sphinxcontrib-programoutput'],
}
setup(
name = 'hop-slack-app',
description = 'This is an application for Hop on Slack where you can receive GCN messages',
long_description = long_description,
long_description_content_type = 'text/markdown',
url = 'https://github.com/scimma/hop-slack-app',
author = 'Shereen Elsayed',
author_email = 's_elsayed@ucsb.edu',
license = 'BSD 3-Clause',
packages = ['hop.apps.slack'],
entry_points = {
'console_scripts': [
'hop-slack = hop.apps.slack.__main__:main',
],
},
python_requires = '>=3.6.*',
install_requires = install_requires,
extras_require = extras_require,
setup_requires = ['setuptools_scm'],
use_scm_version = {
'write_to': 'hop/apps/slack/_version.py'
},
classifiers = [
'Development Status :: 2 - Pre-Alpha',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'Natural Language :: English',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Astronomy',
'Topic :: Scientific/Engineering :: Physics',
'Operating System :: POSIX',
'Operating System :: Unix',
'Operating System :: MacOS',
'License :: OSI Approved :: BSD License',
],
)