forked from Awethon/open-api-python-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (24 loc) · 606 Bytes
/
setup.py
File metadata and controls
28 lines (24 loc) · 606 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
28
# coding: utf-8
from setuptools import setup, find_packages
NAME = "tinkoff-invest-openapi-client"
VERSION = "0.0.7"
REQUIRES = [
"websocket_client == 0.56.0",
"certifi >= 14.05.14",
"six >= 1.10",
"python_dateutil >= 2.5.3",
"setuptools >= 21.0.0",
"urllib3 >= 1.15.1",
"pytz == 2019.3"
]
setup(
name=NAME,
version=VERSION,
description="Tinkoff Invest OpenAPI Сlient",
author_email="awethon@gmail.com",
url="",
keywords=["Swagger", "OpenAPI", "Tinkoff"],
install_requires=REQUIRES,
packages=find_packages(),
include_package_data=True
)