| Ted Moseley | 4dede9d | 2017-08-23 05:06:45 | [diff] [blame] | 1 | try: |
| 2 | from setuptools import setup |
| 3 | except ImportError: |
| 4 | from distutils.core import setup |
| Uiri | 6d1fc45 | 2013-02-24 21:58:44 | [diff] [blame] | 5 | |
| Ted Moseley | 4dede9d | 2017-08-23 05:06:45 | [diff] [blame] | 6 | import toml |
| 7 | |
| 8 | with open("README.rst") as readme_file: |
| 9 | readme_string = readme_file.read() |
| 10 | |
| 11 | setup( |
| 12 | name="toml", |
| 13 | version=toml.__version__, |
| 14 | description="Python Library for Tom's Obvious, Minimal Language", |
| 15 | author="Uiri Noyb", |
| 16 | author_email="uiri@xqz.ca", |
| 17 | url="https://github.com/uiri/toml", |
| 18 | py_modules=['toml'], |
| 19 | license="License :: OSI Approved :: MIT License", |
| 20 | long_description=readme_string, |
| 21 | ) |