File: meta.py

package info (click to toggle)
python-ptk 1.3.8%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 416 kB
  • sloc: python: 3,616; makefile: 200
file content (22 lines) | stat: -rw-r--r-- 607 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# -*- coding: UTF-8 -*-

# (c) Jérôme Laheurte 2015-2019
# See LICENSE.txt


class PackageInfo(object):
    version = '1.3.8'
    version_info = map(int, version.split('.'))

    project_name = 'ptk'
    project_url = 'https://github.com/fraca7/ptk'
    download_url = 'https://pypi.python.org/packages/source/p/ptk/ptk-%s.tar.gz' % version

    author_name = 'J\u00E9r\u00F4me Laheurte'
    author_email = 'jerome@jeromelaheurte.net'

    short_description = 'LR(1) parsing framework for Python with support for asynchronous input'


version = PackageInfo.version
version_info = PackageInfo.version_info