forked from fanzhao1986/platform-py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
64 lines (58 loc) · 1.48 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 = rex-py
description = rex: Reactive Exchange Python API
long_description = file: README.md
version = 0.0.1
url = https://www.reactiveexchange.com
project_urls =
Source=https://github.com/reactiveexchange/rex-python
Tracker=https://github.com/reactiveexchange/rex-python/issues
author = Reactive Exchange
maintainer = Fan Zhao
author-email = development@reactiveexchange.com
long_description_content_type = text/markdown
keywords = reactive exchange
license = Apache
license_file = LICENSE
classifiers =
# Classifier list: http://pypi.python.org/pypi?%3Aaction=list_classifiers
Development Status :: 5 - Production/Stable
Intended Audience :: End Users/Desktop
License :: Apache 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]
packages = find:
python_requires = >=3.7
install_requires =
numpy
pandas
pytz
requests
zip_safe = False
include_package_data = True
package_dir =
= src
[options.packages.find]
where = src
exclude =
tests
[options.extras_require]
testing =
pytest
pytest-cov
flake8
pylint
tox
[options.package_data]
* = *.txt, *.rst
[flake8]
max-line-length = 100
exclude = .git
ignore = E402, W503, W504