blob: 98c08a540cbc7f20b516c27603ee7574875016d6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#!/usr/bin/env python
# coding: utf-8
from setuptools import setup
setup(
name='pytoml',
version='0.1.10',
description='A parser for TOML-0.4.0',
author='Martin Vejnár',
author_email='avakar@ratatanek.cz',
url='https://github.com/avakar/pytoml',
license='MIT',
packages=['pytoml'],
)
|