forked from doconce/doconce
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
59 lines (57 loc) · 2.23 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
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="DocOnce",
version="1.5.13",
author='Hans Petter Langtangen, Alessandro Marin',
author_email="[email protected], [email protected]",
maintainer = "Kristian Gregorius Hustad",
maintainer_email = "[email protected]",
description="Markup language similar to Markdown targeting scientific reports, software documentation, books, blog posts, and slides. DocOnce can generate LaTeX, Sphinx, HTML, IPython notebooks, Markdown, MediaWiki, and other formats",
long_description=long_description,
long_description_content_type="text/markdown",
license = "BSD",
url="https://github.com/doconce/doconce",
project_urls={
"Issues on GitHub": "https://github.com/doconce/doconce/issues",
},
packages = ['doconce'],
package_dir = {'': 'lib'},
python_requires=">=3.6",
scripts = ['bin/doconce'],
install_requires=[
'pygments',
'preprocess',
'wheel',
'mako',
'future',
'pygments-doconce',
'publish-doconce',
'requests',
'nbformat',
'jupyter_client',
'regex'
],
#data_files=[(os.path.join("share", "man", "man1"),[man_filename,]),],
package_data = {'': ['sphinx_themes.zip', 'html_images.zip', 'reveal.js.zip', 'deck.js-latest.zip', 'csss.zip', 'latex_styles.zip']},
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Other Audience',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Operating System :: MacOS',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Operating System :: Unix',
'Programming Language :: Python',
'Topic :: Documentation',
'Topic :: Software Development :: Documentation',
'Topic :: Text Processing :: Markup',
'Topic :: Text Processing :: Markup :: HTML',
'Topic :: Text Processing :: Markup :: LaTeX',
'Topic :: Text Processing :: Markup :: XML',
]
)