Files
discoursep/setup.cfg
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

48 lines
1.1 KiB
INI
Raw Normal View History

2021-12-18 14:55:27 -05:00
[metadata]
name = pydiscourse
version = attr: pydiscourse.__version__
author = "Marc Sibson and contributors"
author_email = "ben@benlopatin.com"
2021-12-18 16:27:15 -05:00
license = "MIT"
2022-04-18 14:15:56 -04:00
url = https://github.com/bennylope/pydiscourse
2021-12-18 14:55:27 -05:00
description = "A Python library for the Discourse API"
long_description = file: README.rst, HISTORY.rst
platforms =
OS Independent
[options]
zip_safe = False
include_package_data = True
packages = find:
package_dir =
=src
install_requires =
requests>=2.4.2
classifiers =
Development Status :: 5 - Production/Stable
Environment :: Web Environment
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
2023-08-29 14:49:45 +02:00
Programming Language :: Python :: 3.11
2024-04-16 16:31:58 -04:00
Programming Language :: Python :: 3.12
2021-12-18 14:55:27 -05:00
[options.packages.find]
where=src
2021-12-18 16:22:12 -05:00
[options.entry_points]
console_scripts =
pydiscoursecli = pydiscourse.main:main
2021-12-18 14:55:27 -05:00
[bdist_wheel]
2016-04-07 17:41:54 -04:00
universal = 1
2021-12-18 14:55:27 -05:00
[build-system]
requires =
setuptools >= "40.9.0"
wheel