aboutsummaryrefslogtreecommitdiffstats
path: root/python/toml/setup.py
blob: e2f2492dc1014b1b2383aef0227216dda67bf7d1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
from distutils.core import setup

with open("README.rst") as readmefile:
    readme = readmefile.read()
setup(name='toml',
      version='0.8.2',
      description="Python Library for Tom's Obvious, Minimal Language",
      author="Uiri Noyb",
      author_email="uiri@xqz.ca",
      url="https://github.com/uiri/toml",
      py_modules=['toml'],
      license="License :: OSI Approved :: MIT License",
      long_description=readme,
)