-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
35 lines (31 loc) · 1.04 KB
/
setup.cfg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
[metadata]
name = python-xmltv
version = attr: xmltv.xmltv.VERSION
description = A Python Module for Reading and Writing XMLTV Files
long_description =
This module provides a simple python API for reading and writing
XMLTV files. XMLTV is an XML format for storing TV listings.
More information on XMLTV can be found at http://wiki.xmltv.org/index.php/XMLTVFormat
author = James Oakley
author_email = jfunk@funktronics.ca
url = https://github.com/dcesari/python-xmltv
license = LGPL-3.0+
py_modules =
xmltv
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)
Operating System :: OS Independent
Programming Language :: Python :: 3
Topic :: Software Development :: Libraries :: Python Modules
[options]
packages =
xmltv
include_package_data = True
[options.entry_points]
console_scripts =
xmltvtool = xmltv.xmltvtool:main
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"