🌐 AI搜索 & 代理 主页
blob: f32757d869763faf4e29120f8493382213b165bb [file] [log] [blame]
Ted Moseley4dede9d2017-08-23 05:06:451try:
2 from setuptools import setup
3except ImportError:
4 from distutils.core import setup
Uiri6d1fc452013-02-24 21:58:445
Ted Moseley4dede9d2017-08-23 05:06:456import toml
7
8with open("README.rst") as readme_file:
9 readme_string = readme_file.read()
10
11setup(
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)