-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.cfg
64 lines (59 loc) · 1.64 KB
/
setup.cfg
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
[metadata]
name = reactive-platform
description = reactive-platform: Reactive Platform Python API
long_description = file: README.md
version = 0.0.1
url = https://www.reactiveexchange.com
project_urls =
Source=https://github.com/reactivemarkets/platform-py
Tracker=https://github.com/reactivemarkets/platform-py/issues
author = Reactive Platform
maintainer = Fan Zhao
author-email = [email protected]
long_description_content_type = text/markdown
keywords = reactive platform
license = Apache
license_file = LICENSE
classifiers =
# Classifier list: http://pypi.python.org/pypi?%3Aaction=list_classifiers
Development Status :: 4 - Beta
Intended Audience :: Developers
Intended Audience :: Information Technology
License :: OSI Approved :: Apache Software License
Operating System :: POSIX :: Linux
Operating System :: Microsoft :: Windows
Operating System :: MacOS :: MacOS X
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Topic :: Utilities
platforms = any
[options]
python_requires = >=3.7
install_requires =
reactive-papi==0.7.0
flatbuffers>=1.12
pytz==2020.1
requests==2.23.0
urllib3>=1.25.2,<1.26
websockets==8.1
numpy>=1.15.4
pandas==1.0.3
zip_safe = False
include_package_data = True
package_dir =
= src
[options.extras_require]
testing =
reactive-papi==0.7.0
pytest
pytest-cov
flake8
tox
numpy>=1.15.4
[options.package_data]
* = *.txt, *.rst
[flake8]
max-line-length = 100
exclude = .git
ignore = E402, W503, W504