-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
55 lines (51 loc) · 1.51 KB
/
Copy pathsetup.py
File metadata and controls
55 lines (51 loc) · 1.51 KB
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
#!/usr/bin/env python
"""Minimal setup script for APILinker."""
from setuptools import setup, find_packages
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text(encoding="utf-8")
__version__ = "0.7.1"
setup(
name="apilinker",
version=__version__,
description="A universal bridge to connect, map, and automate data transfer between any two REST APIs",
long_description=long_description,
long_description_content_type="text/markdown",
author="K. Kartas",
author_email="kkartas@users.noreply.github.com",
url="https://github.com/kkartas/APILinker",
packages=find_packages(include=['apilinker', 'apilinker.*']),
include_package_data=True,
install_requires=[
"httpx>=0.23.0",
"pyyaml>=6.0",
"typer>=0.7.0",
"pydantic>=2.0.0",
"croniter>=1.3.8",
"rich>=12.6.0",
"cryptography>=41.0.0",
"jsonschema>=4.18.0",
],
extras_require={
"dev": [
"pytest>=7.0.0",
"pytest-cov>=4.0.0",
"flake8>=6.0.0",
"mypy>=1.0.0",
"types-croniter",
"types-PyYAML",
"black>=23.0.0",
],
"docs": [
"sphinx>=7.2.0",
"sphinx-rtd-theme>=2.0.0",
"sphinx-autodoc-typehints>=2.0.0",
"sphinx-autoapi>=3.0.0",
],
},
entry_points={
"console_scripts": [
"apilinker=apilinker.cli:app",
],
},
)