-
Notifications
You must be signed in to change notification settings - Fork 73
/
setup.py
executable file
·61 lines (55 loc) · 1.75 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
#!/usr/bin/env python
import os
from setuptools import setup, find_packages
import versioneer
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, 'README.rst')).read()
NEWS = open(os.path.join(here, 'NEWS.txt')).read()
install_requires = [
"setuptools",
"Sphinx >= 2.0",
]
setup(name='hieroglyph',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description=("Generate HTML presentations from plain text "
"sources with all the power of Sphinx."),
long_description=README + '\n\n' + NEWS,
classifiers=[
'License :: OSI Approved :: BSD License',
'Topic :: Documentation',
'Topic :: Text Processing',
"Programming Language :: Python :: 3",
],
keywords='',
author='Nathan Yergler',
author_email='[email protected]',
url='https://github.com/nyergler/hieroglyph',
license='BSD',
packages=find_packages('src'),
package_dir={'': 'src'},
include_package_data=True,
zip_safe=False,
install_requires=install_requires,
entry_points={
'console_scripts': [
'hieroglyph=hieroglyph.quickstart:main',
'hieroglyph-quickstart=hieroglyph.quickstart:quickstart',
],
'hieroglyph.theme': [
'slides=hieroglyph.themes:SLIDES',
'single-level=hieroglyph.themes:SINGLE_LEVEL',
'slides2=hieroglyph.themes:SLIDES2',
],
'sphinx.builders': [
'slides = hieroglyph',
'dirslides = hieroglyph',
],
},
test_suite='hieroglyph.tests',
tests_require=[
'beautifulsoup4',
'mock',
'sphinx-testing',
],
)