File: setup.py

package info (click to toggle)
inifile 0.4.1-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 104 kB
  • sloc: python: 435; makefile: 4
file content (11 lines) | stat: -rw-r--r-- 255 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
from setuptools import setup

setup(
    name='inifile',
    license='BSD',
    author='Armin Ronacher',
    author_email='armin.ronacher@active-4.com',
    description='A small INI library for Python.',
    version='0.4.1',
    py_modules=['inifile'],
)