summaryrefslogtreecommitdiffstats
path: root/setup.cfg
diff options
context:
space:
mode:
Diffstat (limited to 'setup.cfg')
-rw-r--r--setup.cfg59
1 files changed, 59 insertions, 0 deletions
diff --git a/setup.cfg b/setup.cfg
new file mode 100644
index 0000000..7e75a81
--- /dev/null
+++ b/setup.cfg
@@ -0,0 +1,59 @@
+[metadata]
+name = asciinema
+version = 2.2.0
+author = Marcin Kulik
+author_email = m@ku1ik.com
+url = https://asciinema.org
+download_url =
+ https://github.com/asciinema/asciinema/archive/v%(version)s.tar.gz
+description = Terminal session recorder
+description_file = README.md
+license = GNU GPLv3
+license_file = LICENSE
+long_description = file: README.md
+long_description_content_type = text/markdown; charset=UTF-8
+classifiers =
+ Development Status :: 5 - Production/Stable
+ Environment :: Console
+ Intended Audience :: Developers
+ Intended Audience :: System Administrators
+ License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
+ Natural Language :: English
+ Programming Language :: Python
+ 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
+ Topic :: System :: Shells
+ Topic :: Terminals
+ Topic :: Utilities
+
+[options]
+include_package_data = True
+packages =
+ asciinema
+ asciinema.asciicast
+ asciinema.commands
+install_requires =
+
+[options.package_data]
+asciinema = data/*.png
+
+[options.entry_points]
+console_scripts =
+ asciinema = asciinema.__main__:main
+
+[options.data_files]
+share/doc/asciinema =
+ CHANGELOG.md
+ CODE_OF_CONDUCT.md
+ CONTRIBUTING.md
+ README.md
+ doc/asciicast-v1.md
+ doc/asciicast-v2.md
+share/man/man1 =
+ man/asciinema.1
+
+[pycodestyle]
+ignore = E501,E402,E722