Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
quantum-kittens
GitHub Repository: quantum-kittens/platypus
Path: blob/main/converter/textbook-converter/setup.py
3855 views
1
from setuptools import setup, find_packages
2
from sys import argv
3
4
5
with open('README.md', encoding='utf-8') as f:
6
readme = f.read()
7
8
9
requirements = [
10
'ipython>=6',
11
'nbformat>=4',
12
'nbconvert>=5',
13
'requests',
14
'pyyaml'
15
]
16
17
18
setup(
19
name='textbook-converter',
20
version='0.1.0',
21
description='Convert Textbook notebooks to Mathigon format',
22
long_description=readme,
23
long_description_content_type='text/markdown',
24
keywords=[
25
'jupyter',
26
'mathigon',
27
'qiskit',
28
'textbook'
29
],
30
license='Apache-2.0',
31
install_requires=requirements,
32
packages=find_packages(include=['textbook_converter']),
33
url='https://github.com/Qiskit/platypus/tree/main/converter/textbook-converter',
34
python_requires='>=3.6',
35
entry_points={
36
'nbconvert.exporters': [
37
'textbook = textbook_converter:TextbookExporter',
38
],
39
}
40
)
41
42