-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
33 lines (29 loc) · 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
# -*- coding: utf-8 -*-
import os
from setuptools import find_packages
from setuptools import setup
with open(os.path.join(os.path.abspath(os.path.dirname(__file__)), "README.md")) as fp:
long_description = fp.read()
setup(
name="multicontents",
version="0.4.0",
description="providing contents from multiple sources in jupyter notebook",
long_description_content_type="text/markdown",
long_description=long_description,
url="https://github.com/lydian/multicontents",
author="Lydian Lee",
author_email="[email protected]",
maintainer="Lydian Lee",
maintainer_email="[email protected]",
packages=find_packages(),
install_requires=["notebook", "ipykernel"],
python_requires=">=3.6",
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
],
)