File: setup.py

package info (click to toggle)
sphinx-code-tabs 0.5.5-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 212 kB
  • sloc: python: 196; makefile: 32; javascript: 26
file content (14 lines) | stat: -rw-r--r-- 347 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
from setuptools import setup

meta = {}
with open('sphinx_code_tabs/__init__.py', 'rb') as f:
    try:
        exec(f.read(), meta, meta)
    except ImportError:     # ignore missing dependencies at setup time
        pass                # and return dunder-globals anyway!


setup(
    name='sphinx_code_tabs',
    version=meta['__version__'],
)