blob: 6560cbc6fb42261956f26c993cca61c306f3db90 [file] [log] [blame]
diff --git a/setup.py b/setup.py
new file mode 100644
index 000000000000..7575dcc0f3ae
--- /dev/null
+++ b/setup.py
@@ -0,0 +1,29 @@
+from distutils.core import setup
+
+setup(
+ name="tomli",
+ version="1.2.0",
+ description="A lil' TOML parser",
+ author="Taneli Hukkinen",
+ author_email="hukkin@users.noreply.github.com",
+ packages=["src/tomli"],
+ # license = { file = "LICENSE" }
+ classifiers=[
+ "License :: OSI Approved :: MIT License",
+ "Operating System :: MacOS",
+ "Operating System :: Microsoft :: Windows",
+ "Operating System :: POSIX :: Linux",
+ "Programming Language :: Python :: 3 :: Only",
+ "Programming Language :: Python :: 3.6",
+ "Programming Language :: Python :: 3.7",
+ "Programming Language :: Python :: 3.8",
+ "Programming Language :: Python :: 3.9",
+ "Programming Language :: Python :: 3.10",
+ "Programming Language :: Python :: Implementation :: CPython",
+ "Programming Language :: Python :: Implementation :: PyPy",
+ "Topic :: Software Development :: Libraries :: Python Modules",
+ "Typing :: Typed",
+ ],
+ keywords=["toml"]
+)
+