-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (24 loc) · 760 Bytes
/
setup.py
File metadata and controls
27 lines (24 loc) · 760 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
27
from re import search
from setuptools import setup, find_packages
with open('README.md') as f:
README = f.read()
with open('starkcore/__init__.py') as f:
version = search(r'version = \"(.*)\"', f.read()).group(1)
setup(
name="starkcore",
packages=find_packages(),
include_package_data=True,
description="Basic SDK functionalities for the starkbank and starkinfra SDKs",
long_description=README,
long_description_content_type="text/markdown",
license="MIT License",
url="https://github.com/starkinfra/core-python",
author="Stark Infra",
author_email="developers@starkbank.com",
keywords=[],
version=version,
install_requires=[
"requests>=2.23.0",
"starkbank-ecdsa>=2.0.3",
],
)