forked from Fatal1ty/tinkoff-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (34 loc) · 1.24 KB
/
setup.py
File metadata and controls
36 lines (34 loc) · 1.24 KB
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
#!/usr/bin/env python
from setuptools import find_packages, setup
setup(
name="tinkoff-api",
version="1.18",
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="random.gauss@gmail.com",
url="https://github.com/Fatal1ty/tinkoff-api",
package_data={"tinkoff": ["py.typed", "investments/client/streaming.pyi"]},
packages=find_packages(exclude=("tests",)),
python_requires=">=3.6",
install_requires=[
"aiohttp>=3.6.2,<4",
"yarl>=1.4.2",
"mashumaro>=1.18",
"ciso8601==2.1.2",
],
)