File: setup.py

package info (click to toggle)
python-q 2.6-1.2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, sid, trixie
  • size: 104 kB
  • sloc: python: 391; makefile: 36
file content (10 lines) | stat: -rw-r--r-- 466 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
from setuptools import setup
setup(name='q', version='2.6', py_modules=['q'],
      description='Quick-and-dirty debugging output for tired programmers',
      author='Ka-Ping Yee', author_email='ping@zesty.ca',
      license='Apache License 2.0',
      url='http://github.com/zestyping/q', classifiers=[
          'Programming Language :: Python',
          'Intended Audience :: Developers',
          'License :: OSI Approved :: Apache Software License'
      ])