summaryrefslogtreecommitdiff
path: root/setup.cfg
diff options
context:
space:
mode:
authorInada Naoki <songofacandy@gmail.com>2022-03-03 12:29:55 +0900
committerGitHub <noreply@github.com>2022-03-03 12:29:55 +0900
commitcb50b2081b21e5cb4a364d292f55092c98aa1a6f (patch)
treece97035a3f9c129ab52e665b21a7124cf55d5500 /setup.cfg
parent89ea57747ebcb0fad004a92ab00ebf13c10b2d51 (diff)
downloadmsgpack-python-cb50b2081b21e5cb4a364d292f55092c98aa1a6f.tar.gz
Update setuptools and black (#498)
* Use setuptools * Use black==22.1.0
Diffstat (limited to 'setup.cfg')
-rw-r--r--setup.cfg32
1 files changed, 32 insertions, 0 deletions
diff --git a/setup.cfg b/setup.cfg
new file mode 100644
index 0000000..1cb6ce3
--- /dev/null
+++ b/setup.cfg
@@ -0,0 +1,32 @@
+[metadata]
+name = msgpack
+#version = attr: msgpack.__version__
+version = attr: msgpack.version
+license = Apache 2.0
+author = Inada Naoki
+author_email = songofacandy@gmail.com
+description = MessagePack serializer
+long_description = file: README.md
+long_description_content_type = text/markdown
+url = https://msgpack.org/
+
+project_urls =
+ Documentation = https://msgpack-python.readthedocs.io/
+ Source = https://github.com/msgpack/msgpack-python
+ Tracker = https://github.com/msgpack/msgpack-python/issues
+
+classifiers =
+ Programming Language :: Python :: 3
+ 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
+ Intended Audience :: Developers
+ License :: OSI Approved :: Apache Software License
+
+[flake8]
+max_line_length = 100
+