forked from Sage-Bionetworks/synapsePythonClient
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
127 lines (108 loc) · 3.13 KB
/
setup.cfg
File metadata and controls
127 lines (108 loc) · 3.13 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
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
[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 = platform@sagebase.org
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.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
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.8
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'",
keyring>=15,<23.5
keyrings.alt==3.1; sys_platform == "linux"
deprecated>=1.2.4,<2.0
opentelemetry-api~=1.21.0
opentelemetry-sdk~=1.21.0
opentelemetry-exporter-otlp-proto-http~=1.21.0
tests_require =
pytest>=6.0.0,<7.0
pytest-mock>=3.0,<4.0
flake8>=3.7.0,<4.0
pytest-xdist[psutil]>=2.2,<3.0.0
pytest-rerunfailures~=12.0
func-timeout~=4.3
[options.extras_require]
dev =
pytest>=6.0.0,<7.0
pytest-mock>=3.0,<4.0
flake8>=3.7.0,<4.0
pytest-xdist[psutil]>=2.2,<3.0.0
pytest-rerunfailures~=12.0
func-timeout~=4.3
black
pre-commit
tests =
pytest>=6.0.0,<7.0
pytest-mock>=3.0,<4.0
flake8>=3.7.0,<4.0
pytest-xdist[psutil]>=2.2,<3.0.0
pytest-rerunfailures~=12.0
func-timeout~=4.3
pandas =
pandas>=1.5,<2.1
pysftp =
pysftp>=0.2.8,<0.3
boto3 =
boto3>=1.7.0,<2.0
docs =
sphinx>=4.0,<5.0
sphinx-argparse>=0.2,<0.3
sphinx_rtd_theme
[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