-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.cfg
33 lines (31 loc) · 1.17 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
[metadata]
name = instant_api
author = Alex Hall
author_email = alex.mojaki@gmail.com
license = MIT
description = Instantly create an HTTP API with automatic type conversions, JSON RPC, and a Swagger UI. Just add methods!
url = http://github.com/alexmojaki/instant_api
long_description = file: README.md
long_description_content_type = text/markdown
classifiers =
Intended Audience :: Developers
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Framework :: Flask
Topic :: Internet
Topic :: Internet :: WWW/HTTP
Topic :: Internet :: WWW/HTTP :: HTTP Servers
Topic :: Internet :: WWW/HTTP :: WSGI :: Server
License :: OSI Approved :: MIT License
Operating System :: OS Independent
[options]
packages = instant_api
install_requires = flasgger; json-rpc; datafunctions; apispec
setup_requires = setuptools>=44; wheel; setuptools_scm[toml]>=3.4.3
include_package_data = True
tests_require = pytest; instant_client[requests]; littleutils
[options.extras_require]
tests = pytest; instant_client[requests]; littleutils
client = instant_client[requests]