forked from dunovank/jupyter-themes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
85 lines (76 loc) · 2.87 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
import os
from glob import glob
from setuptools import setup
from itertools import chain
pkgname = 'jupyterthemes'
major = 0
minor = 20
patch = 0
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
# add layout, .less styles, and compiled .css files to pkg data
layout = os.path.join(pkgname, 'layout')
styles = os.path.join(pkgname, 'styles')
stylesCompiled = os.path.join(styles, 'compiled')
datafiles = {pkgname: []}
for subdir in ['defaults', 'layout', 'styles', 'styles/compiled']:
filetypes = '*.*ss'
if subdir=='defaults':
filetypes = '*.*s'
files = glob(os.path.join(pkgname, subdir, filetypes))
filesLocalPath = [os.sep.join(f.split(os.sep)[1:]) for f in files]
datafiles[pkgname].extend(filesLocalPath)
# 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([[os.sep.join(f.split(os.sep)[1:])
for f in glob(os.path.join(fsub, '*', '*'))]
for fsub in fsubdirs])
datafiles[pkgname].extend(list(fontsdata))
install_requires = ['jupyter_core', 'notebook>=5.6.0', 'ipython>=5.4.1', 'matplotlib>=1.4.3', 'lesscpy>=0.11.2']
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=install_requires,
keywords=['jupyter', 'python', 'ipython', 'notebook', 'theme', 'less', 'css'],
entry_points={
'console_scripts': [
'jupyter-theme = jupyterthemes:main',
'jt = jupyterthemes:main',
],
})