-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
40 lines (36 loc) · 1.25 KB
/
setup.py
File metadata and controls
40 lines (36 loc) · 1.25 KB
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import io
import os
import re
from setuptools import setup
with open("README.md", "r") as fh:
LONG_DESCRIPTION = fh.read()
install_requires = ['nbformat', 'nbconvert']
setup(
name="runpynb",
version="0.3.0",
license='MIT',
author="Lucas Shen",
author_email="lucas@lucasshen.com",
maintainer="Lucas Shen",
maintainer_email="lucas@lucasshen.com",
url="https://github.com/lsys/runPyNB",
description="Run (and time) Jupyter Notebooks for command-line and makefile",
long_description=LONG_DESCRIPTION,
long_description_content_type='text/markdown',
packages=["runpynb"],
scripts=["runpynb/scripts/runpynb"],
install_requires=install_requires,
keywords=['jupyter notebook', 'jupyter', 'command-line', 'makefile', 'make', 'nbconvert'],
classifiers=[
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
],
)