forked from starkbank/sdk-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
26 lines (23 loc) · 822 Bytes
/
setup.py
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
from re import search
from setuptools import setup, find_packages
with open('README.md', encoding="utf-8") as f:
README = f.read()
with open('starkbank/__init__.py') as f:
version = search(r'version = \"(.*)\"', f.read()).group(1)
setup(
name="starkbank",
packages=find_packages(),
include_package_data=True,
description="SDK to facilitate Python integrations with Stark Bank",
long_description=README,
long_description_content_type="text/markdown",
license="MIT License",
url="https://github.com/starkbank/sdk-python",
author="Stark Bank",
author_email="[email protected]",
keywords=["stark bank", "starkbank", "sdk", "open banking", "openbanking", "banking", "open", "stark"],
version=version,
install_requires=[
"starkcore>=0.0.5",
],
)