This repository was archived by the owner on Sep 23, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathsetup.py
42 lines (40 loc) · 1.34 KB
/
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#!/usr/bin/env python
from setuptools import find_packages, setup
setup(
name="tinkoff-api",
version="1.19",
description="Python Tinkoff API client for asyncio and humans",
long_description=open("README.md", encoding="utf8").read(),
long_description_content_type="text/markdown",
platforms="all",
classifiers=[
"License :: OSI Approved :: Apache Software License",
"Intended Audience :: Developers",
"Topic :: Office/Business :: Financial",
"Topic :: Office/Business :: Financial :: Investment",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Development Status :: 4 - Beta",
],
license="Apache License, Version 2.0",
author="Alexander Tikhonov",
author_email="[email protected]",
url="https://github.com/Fatal1ty/tinkoff-api",
package_data={
"tinkoff": [
"py.typed",
"investments/client/streaming.pyi",
"investments/model/proto/*.pyi",
],
},
packages=find_packages(exclude=("tests",)),
python_requires=">=3.6",
install_requires=[
"aiohttp>=3.6.2,<4",
"yarl>=1.4.2",
"mashumaro>=3.0,<4",
"ciso8601==2.1.2",
],
)