File: setup.py

package info (click to toggle)
python-ptk 1.3.8%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 396 kB
  • sloc: python: 3,616; makefile: 202
file content (28 lines) | stat: -rw-r--r-- 890 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
23
24
25
26
27
28
# -*- coding: UTF-8 -*-

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

from distutils.core import setup
from ptk.meta import version, PackageInfo

setup(
    name='ptk',
    packages=['ptk'],
    version=version,
    description=PackageInfo.short_description,
    author=PackageInfo.author_name,
    author_email=PackageInfo.author_email,
    url=PackageInfo.project_url,
    download_url=PackageInfo.download_url,
    keywords='parser parsing compiler lr slr'.split(),
    classifiers=[
      'Development Status :: 5 - Production/Stable',
      'Intended Audience :: Developers',
      'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)',
      'Operating System :: OS Independent',
      'Programming Language :: Python',
      'Topic :: Software Development :: Compilers',
      'Topic :: Software Development :: Libraries :: Python Modules',
    ],
    )