代码拉取完成,页面将自动刷新
import os
from glob import glob
from setuptools import setup
from itertools import chain
major = 0
minor = 16
patch = 4
version = '.'.join([str(v) for v in [major, minor, patch]])
url = 'https://github.com/dunovank/jupyter-themes'
download_url = '/'.join([url, 'tarball', 'v' + version])
# get readme content after screenshots for pypi site
README = os.path.join(os.path.dirname(__file__), 'README.md')
with open(README) as read_me:
longdescr = ''
startReading = False
for line in read_me:
if "Travis" in line.strip():
startReading = True
if "Monospace Fonts" in line.strip():
break
if startReading:
longdescr += line
pkgname = 'jupyterthemes'
datafiles = {pkgname: ['sandbox/*.js', 'layout/*.less', 'layout/*.css',
'styles/*.less', 'styles/compiled/*.css']}
# recursively point to all included font directories
fontfams = ['monospace', 'sans-serif', 'serif']
fsubdirs = [os.path.join(pkgname, 'fonts', subdir) for subdir in fontfams]
fontsdata = chain.from_iterable([['/'.join(f.split('/')[1:])
for f in glob(os.path.join(fsub, '*', '*'))]
for fsub in fsubdirs])
datafiles[pkgname].extend(fontsdata)
setup(
name='jupyterthemes',
version=version,
packages=['jupyterthemes'],
include_package_data=True,
package_data=datafiles,
description='Select and install a Jupyter notebook theme',
long_description=longdescr,
license='MIT',
url=url,
download_url=download_url,
author='dunovank',
author_email='dunovank@gmail.com',
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
],
install_requires=['ipython<6.0', 'jupyter', 'jupyter_core', 'lesscpy>=0.12.0', 'seaborn'],
keywords=['jupyter', 'ipython', 'notebook', 'themes', 'css'],
entry_points={
'console_scripts': [
'jupyter-theme = jupyterthemes:main',
'jt = jupyterthemes:main',
],
})
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。