aboutsummaryrefslogtreecommitdiff
path: root/setup.cfg
diff options
context:
space:
mode:
authorHervé Beraud <hberaud@redhat.com>2018-10-04 23:51:54 +0200
committerneodarz <neodarz@neodarz.net>2018-10-06 18:12:14 +0200
commit440f1a26ef243f83f1bb2ce43d3e0e7835cf1c1a (patch)
tree1b5c753ad4742c229637ab4c1b850247f349ff5a /setup.cfg
parent9745989d7c25c7582885b43d07123fcf1f02bd39 (diff)
downloadarte.tv-dl-440f1a26ef243f83f1bb2ce43d3e0e7835cf1c1a.tar.xz
arte.tv-dl-440f1a26ef243f83f1bb2ce43d3e0e7835cf1c1a.zip
Introduce python packaging
Diffstat (limited to 'setup.cfg')
-rw-r--r--setup.cfg39
1 files changed, 39 insertions, 0 deletions
diff --git a/setup.cfg b/setup.cfg
new file mode 100644
index 0000000..14ef91d
--- /dev/null
+++ b/setup.cfg
@@ -0,0 +1,39 @@
+[metadata]
+name = arte
+home-page = https://git.neodarz.net/neodarz/scripts/arte.tv-dl.git
+summary = Download videos from arte.tv
+description-file =
+ README.md
+author = NeodarZ
+author-email = neodarz@neodarz.net
+licence = GPL3
+classifier =
+ Development Status :: 5 - Production/Stable
+ Intended Audience :: Information Technology
+ License :: OSI Approved :: GNU General Public License v3 (GPLv3)
+ Operating System :: POSIX
+ Programming Language :: Python
+ Programming Language :: Python :: 2
+ Programming Language :: Python :: 2.7
+ Programming Language :: Python :: 3
+ Programming Language :: Python :: 3.4
+ Programming Language :: Python :: 3.5
+ Programming Language :: Python :: 3.6
+
+[files]
+packages =
+ arte
+
+[extras]
+devel=
+ fixtures
+ pbr
+ tox
+ bandit
+
+[entry_points]
+console_scripts =
+ arte = arte.__main__:main
+
+[wheel]
+universal = 1