File: setup.py

package info (click to toggle)
sgmllib3k 1.0.0-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 128 kB
  • sloc: python: 412; makefile: 3
file content (23 lines) | stat: -rw-r--r-- 611 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
from setuptools import setup

CLASSIFIERS = [
    'Development Status :: 5 - Production/Stable',
    'Intended Audience :: Developers',
    'License :: OSI Approved :: BSD License',
    'Programming Language :: Python :: 3',
]

setup(
    name='sgmllib3k',
    version='1.0.0',
    author='Hardcoded Software',
    author_email='hsoft@hardcoded.net',
    py_modules=['sgmllib'],
    scripts=[],
    url='http://hg.hardcoded.net/sgmllib',
    license='BSD License',
    description='Py3k port of sgmllib.',
    long_description=open('README').read(),
    classifiers=CLASSIFIERS,
    test_suite='test_sgmllib',
)