|
16 | 16 | # You should have received a copy of the GNU Affero General Public License |
17 | 17 | # along with this program. If not, see <https://www.gnu.org/licenses/>. |
18 | 18 |
|
19 | | -from setuptools import setup, find_packages |
| 19 | +from setuptools import ( |
| 20 | + setup, |
| 21 | + find_packages, |
| 22 | +) |
20 | 23 |
|
21 | 24 | with open('README.rst', encoding='utf-8') as f: |
22 | 25 | readme = f.read() |
|
57 | 60 | 'async_generator', |
58 | 61 |
|
59 | 62 | # from github currently (see requirements.txt) |
60 | | - # 'trimeter', # not released yet.. |
| 63 | + # normally pinned to particular git hashes.. |
61 | 64 | # 'tractor', |
62 | | - # asyncvnc, |
63 | | - # 'cryptofeed', |
| 65 | + # 'asyncvnc', |
| 66 | + # 'pyqtgraph', |
| 67 | + # anyio-marketstore # mkts tsdb client |
64 | 68 |
|
65 | 69 | # brokers |
66 | | - 'asks', |
| 70 | + 'asks', # for non-ws rest apis |
67 | 71 | 'ib_insync', |
68 | 72 |
|
69 | 73 | # numerics |
|
78 | 82 | # 'pyqtgraph', from our fork see reqs.txt |
79 | 83 | 'qdarkstyle >= 3.0.2', # themeing |
80 | 84 | 'fuzzywuzzy[speedup]', # fuzzy search |
81 | | - |
82 | | - # tsdbs |
83 | | - # anyio-marketstore # from gh see reqs.txt |
84 | 85 | ], |
85 | 86 | extras_require={ |
86 | 87 | 'tsdb': [ |
|
107 | 108 | "Programming Language :: Python :: Implementation :: CPython", |
108 | 109 | "Programming Language :: Python :: 3 :: Only", |
109 | 110 | "Programming Language :: Python :: 3.10", |
| 111 | + "Programming Language :: Python :: 3.11", |
110 | 112 | 'Intended Audience :: Financial and Insurance Industry', |
111 | 113 | 'Intended Audience :: Science/Research', |
112 | 114 | 'Intended Audience :: Developers', |
|
0 commit comments