-
Notifications
You must be signed in to change notification settings - Fork 68
/
setup.cfg
152 lines (132 loc) · 3.8 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
[metadata]
name = synapseclient
description = A client for Synapse, a collaborative, open-source research platform that allows teams to share data, track analyses, and collaborate.
author = The Synapse Engineering Team
author_email = [email protected]
license = Apache-2.0
license_files = LICENSE.txt
long_description = file: README.md
long_description_content_type = text/markdown; charset=UTF-8; variant=GFM
url = https://www.synapse.org
project_urls =
Source = https://github.com/Sage-Bionetworks/synapsePythonClient
Tracker = https://github.com/Sage-Bionetworks/synapsePythonClient/issues
Documentation = https://python-docs.synapse.org
Changelog = https://python-docs.synapse.org/build/html/index.html#release-notes
# Change if running only on Windows, Mac or Linux (comma-separated)
platforms = any
# Add here all kinds of additional classifiers as defined under
# https://pypi.org/classifiers/
classifiers =
Development Status :: 5 - Production/Stable
Programming Language :: Python
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Operating System :: MacOS
Operating System :: Microsoft :: Windows
Operating System :: Unix
Operating System :: POSIX :: Linux
Intended Audience :: Developers
Intended Audience :: Science/Research
License :: OSI Approved :: Apache Software License
Topic :: Software Development :: Libraries
Topic :: Scientific/Engineering
Topic :: Scientific/Engineering :: Bio-Informatics
[options]
zip_safe = False
include_package_data = True
packages = find:
python_requires = >=3.9, <3.13
install_requires =
# "requests>=2.22.0,<2.30.0; python_version<'3.10'",
requests>=2.22.0,<3.0
urllib3>=1.26.18,<2
# "urllib3>=2; python_version>='3.10'",
deprecated>=1.2.4,<2.0
opentelemetry-api>=1.21.0
opentelemetry-sdk>=1.21.0
opentelemetry-exporter-otlp-proto-http>=1.21.0
opentelemetry-instrumentation-httpx>=0.48b0
opentelemetry-instrumentation-requests>=0.48b0
opentelemetry-instrumentation-threading>=0.48b0
opentelemetry-instrumentation-urllib>=0.48b0
nest-asyncio~=1.6.0
asyncio-atexit~=1.0.1
httpx~=0.27.0
tqdm>=4.66.2,<5.0
async-lru~=2.0.4
psutil~=5.9.8
tests_require =
pytest>=7.0.0,<8.0
pytest-mock>=3.0,<4.0
pytest-socket~=0.6.0
pytest-asyncio>=0.23.6,<1.0
flake8>=3.7.0,<4.0
pytest-xdist[psutil]>=2.2,<3.0.0
pytest-rerunfailures~=12.0
func-timeout~=4.3
pytest-cov~=4.1.0
pandas>=1.5,<3.0
[options.extras_require]
dev =
pytest>=7.0.0,<8.0
pytest-mock>=3.0,<4.0
pytest-socket~=0.6.0
pytest-asyncio>=0.23.6,<1.0
flake8>=3.7.0,<4.0
pytest-xdist[psutil]>=2.2,<3.0.0
pytest-rerunfailures~=12.0
func-timeout~=4.3
pytest-cov~=4.1.0
black
pre-commit
pandas>=1.5,<3.0
tests =
pytest>=7.0.0,<8.0
pytest-mock>=3.0,<4.0
pytest-socket~=0.6.0
pytest-asyncio>=0.23.6,<1.0
flake8>=3.7.0,<4.0
pytest-xdist[psutil]>=2.2,<3.0.0
pytest-rerunfailures~=12.0
func-timeout~=4.3
pytest-cov~=4.1.0
pandas>=1.5,<3.0
pandas =
pandas>=1.5,<3.0
pysftp =
pysftp>=0.2.8,<0.3
boto3 =
boto3>=1.7.0,<2.0
docs =
mkdocs>=1.5.3
mkdocs-material>=9.4.14
mkdocstrings>=0.24.0
mkdocstrings-python>=1.8.0
termynal>=0.11.1
mkdocs-open-in-new-tab~=1.0.3
markdown-include~=0.8.1
[options.entry_points]
console_scripts =
synapse = synapseclient.__main__:main
[options.package_data]
synapseclient =
synapsePythonClient
.synapseConfig
[options.packages.find]
exclude = tests*
[flake8]
# pep8 default is 80
max-line-length: 120
exclude =
.*
build
docs
dist
[tool:pytest]
python_files =
test_*.py
*_test.py
*_test_*.py