-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
19 lines (17 loc) · 561 Bytes
/
setup.py
File metadata and controls
19 lines (17 loc) · 561 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
from setuptools import setup
from moloni.__version__ import __version__
setup(
name="python-moloni",
version=__version__,
install_requires=["requests", "cachetools>=4.2", "pydantic"],
extras_require={
"aws-caching": ["aws-secretsmanager-caching", "boto3"],
"aws": ["boto3"],
},
packages=["moloni.api", "moloni.base", "moloni"],
url="https://github.com/saleweaver/python-moloni",
license="MIT",
author="Michael",
author_email="michael@datastic.co",
description="Python wrapper for the Moloni API",
)