-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (23 loc) · 828 Bytes
/
setup.py
File metadata and controls
26 lines (23 loc) · 828 Bytes
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') as f:
README = f.read()
with open('starkinfra/__init__.py') as f:
version = search(r'version = \"(.*)\"', f.read()).group(1)
setup(
name="starkinfra",
packages=find_packages(exclude=["tests"]),
include_package_data=True,
description="SDK to facilitate Python integrations with Stark Infra",
long_description=README,
long_description_content_type="text/markdown",
license="MIT License",
url="https://github.com/starkinfra/sdk-python",
author="Stark Infra",
author_email="developers@starkbank.com",
keywords=["stark infra", "starkinfra", "sdk", "open banking", "openbanking", "banking", "open", "stark"],
version=version,
install_requires=[
"starkcore>=0.1.0",
],
)