-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
38 lines (36 loc) · 1.1 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="tmslack",
version="0.1.0.dev",
author="Daniel Solano Gómez",
author_email="[email protected]",
description="Invite fellow slack users into your tmate session.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/outpace/tmslack",
license='Apache Software License 2.0',
packages=setuptools.find_packages(),
install_requires=[
'Click >= 7.0',
'PyYAML >= 3.13',
'slackclient >= 1.3.0',
'xdg >= 3.0.2'
],
setup_requires=["pytest-runner"],
tests_require=["pytest"],
entry_points={
'console_scripts': [
'tmslack = tmslack:main'
]
},
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent"
]
)