-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.cfg
42 lines (38 loc) · 882 Bytes
/
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
36
37
38
39
40
41
42
[metadata]
name = feincms-oembed
version = attr: feincms_oembed.__version__
description = OEmbed anything.
author = FEINHEIT GmbH
author_email = [email protected]
url = https://github.com/feincms/feincms-oembed/
license = BSD License
platforms = OS Independent
classifiers =
Development Status :: 5 - Production/Stable
Environment :: Web Environment
Framework :: Django
Intended Audience :: Developers
License :: OSI Approved :: BSD License
Operating System :: OS Independent
Programming Language :: Python
Topic :: Internet :: WWW/HTTP :: Dynamic Content
[options]
packages = find:
install_requires = FeinCMS>=22.0
zip_safe = False
[options.packages.find]
exclude =
tests
tests.*
[options.extras_require]
tests =
coverage
[coverage:run]
branch = True
include =
*oembed*
omit =
*migrations*
*migrate*
*tests*
*.tox*