-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.cfg
56 lines (55 loc) · 1.7 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
[metadata]
name = agoradatatools
description = "A collection of tools that can be used to work with Agora's data"
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/Sage-Bionetworks/agora-data-tools
author = mfazza, Informatics & Biocomputing - Sage Bionetworks
author_email = [email protected], [email protected]
license = Apache
license_files = LICENSE
platforms = any
classifiers =
Development Status :: 4 - Beta
Environment :: Console
Intended Audience :: Science/Research
License :: OSI Approved :: Apache Software License
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
# Support for Python versions 3.10 and above is temporarily disabled
# Programming Language :: Python :: 3.10
# Programming Language :: Python :: 3.11
Topic :: Scientific/Engineering
project_urls =
Bug Tracker = https://github.com/Sage-Bionetworks/agora-data-tools/issues
Source Code = https://github.com/Sage-Bionetworks/agora-data-tools
[options]
package_dir =
= src
packages = find:
install_requires =
pandas~=2.0.0
numpy~=1.21
setuptools~=70.0.0
synapseclient~=4.0.0
PyYAML~=6.0
pyarrow~=14.0.1
typer~=0.7.0
great-expectations==0.18.1
python_requires = >=3.8, <3.12
include_package_data = True
zip_safe = False
[options.packages.find]
where = src
[options.entry_points]
console_scripts =
adt = agoradatatools.process:app
[options.extras_require]
dev =
pytest~=7.2
black~=23.3
pre-commit~=3.6