-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
56 lines (50 loc) · 1.37 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# -*- coding: utf-8 -*-
[metadata]
name = omdbpy
version = 0.1.14
description = A minimalist Python wrapper for the Open Movie Database (OMDb) API (https://www.omdbapi.com/).
long_description = file: README.md
long_description_content_type = text/markdown
keywords = omdb api imdb movies television
maintainer = Blair Gemmer
author = Blair Gemmer
author_email = [email protected]
maintainer-email = [email protected]
url = https://github.com/blairg23/omdbpy
project_urls =
Source=https://github.com/blairg23/omdbpy
Tracker=https://github.com/blairg23/omdbpy/issues
platforms = any
license = MIT
license_file = LICENSE
classifiers =
Development Status :: 2 - Pre-Alpha
Environment :: Web Environment
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
[options]
packages = find:
install_requires =
requests
[options.packages.find]
where = src
;[options.entry_points]
;console_scripts =
[options.extras_require]
testing =
faker
pytest-cov
pytest
tox
;docs =
; sphinx >= 2.0.0, < 3
; towncrier >= 18.5.0
; pygments-github-lexers >= 0.0.5
; sphinxcontrib-autoprogram >= 0.1.5
[bdist_wheel]
universal = 1