Revert "Auto merge of #7103 - frewsxcv:python-venv, r=metajack" for breaking web-platform-tests.

This reverts commit c315404db8, reversing
changes made to b00583bd4e.
This commit is contained in:
Ms2ger 2015-08-09 11:20:40 +02:00
parent c315404db8
commit 47d6d958f5
51 changed files with 5813 additions and 51 deletions

14
python/toml/setup.py Normal file
View file

@ -0,0 +1,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,
)