File: setup.py

package info (click to toggle)
python-pager 3.3-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, sid, trixie
  • size: 96 kB
  • sloc: python: 367; makefile: 16
file content (38 lines) | stat: -rw-r--r-- 1,088 bytes parent folder | download | duplicates (2)
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
"""
Release checklist:

[ ] update version
[ ] upload to PyPI
"""

from distutils.core import setup

def get_version(relpath):
    """read version info from file without importing it"""
    from os.path import dirname, join
    for line in open(join(dirname(__file__), relpath)):
        if '__version__' in line:
            if '"' in line:
                # __version__ = "0.9"
                return line.split('"')[1]
            elif "'" in line:
                return line.split("'")[1]

setup(
    name='pager',
    version=get_version('pager.py'),
    description='Terminal/console pager module in pure Python',
    long_description=open('README.rst').read(),
    py_modules=['pager'],
    license='Public Domain',
    author='anatoly techtonik',
    author_email='techtonik@gmail.com',
    url='http://bitbucket.org/techtonik/python-pager',
    classifiers=[
        'Environment :: Console',
        'License :: Public Domain',
        'Operating System :: OS Independent',
        'Programming Language :: Python :: 2',
        'Programming Language :: Python :: 3',
    ],
)