-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (23 loc) 路 696 Bytes
/
Copy pathsetup.py
File metadata and controls
24 lines (23 loc) 路 696 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
# setup.py
from setuptools import setup
setup(
name="jupyslack",
version="0.2.1",
packages=["jupyslack"],
license="MIT",
author="Adrien Chuttarsing",
author_email="adrien.chuttarsing@gmail.com",
url="https://github.com/Achuttarsing/jupyslack",
description="Slack integration to notebooks",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
keywords="ipython slack notebook jupyslack",
install_requires = ['ipython','requests'],
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Framework :: IPython",
"Programming Language :: Python",
"Topic :: Utilities",
],
)