Change all of the explicit backslash line continuations into implicit line continuations. This isn't strictly required by flake8 Clean up all the issues with overly long lines introduced since my last cleanup. Fix some whitespace issues. Ignore py2-specific code causing an issue for the py3 lint in tests/decoding_test.py
16 lines
463 B
Python
16 lines
463 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,
|
|
)
|