Files
deb-python-toml/setup.py
Marcus Ottosson d31bcc796e #97: Add __version__ and __spec__
* Enable support for toml.__version__

* Add __spec__

Include reference to which version of the specification this library currently implements.
https://github.com/toml-lang/toml/blob/v0.4.0/README.md
2017-05-12 00:09:14 -04:00

16 lines
457 B
Python

import toml
from distutils.core import setup
with open("README.rst") as readmefile:
readme = readmefile.read()
setup(name='toml',
version=toml.__version__,
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,
)