-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (30 loc) · 875 Bytes
/
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
from os import path
from setuptools import setup
def get_long_description():
with open(
path.join(path.dirname(path.abspath(__file__)), "README.md"),
encoding="utf8",
) as fp:
return fp.read()
setup(
name='ipyccmd',
author='manisar',
author_email='[email protected]',
install_requires=[
'forbiddenfruit',
'markdown',
'beautifulsoup4'
],
description='Show markdown from code cells in IPython',
long_description=get_long_description(),
long_description_content_type="text/markdown",
license='MIT License',
packages=['ipyccmd'],
keywords='ipython, markdown, codecell',
varsion='0.0.1',
classifiers=[
'Programming Language :: Python :: 3',
'Operating System :: OS Independent'
],
package_dir={"": "src"}
)