-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.cfg
65 lines (60 loc) · 1.62 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
[metadata]
name = fsspec_xrootd
description = xrootd implementation for fsspec
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/CoffeaTeam/fsspec-xrootd
author = Scott Demarest
author_email = [email protected]
maintainer = CoffeaTeam admins
maintainer_email = [email protected]
license = BSD-3-Clause
license_files = LICENSE
platforms =
Any
classifiers =
Development Status :: 1 - Planning
Intended Audience :: Developers
Intended Audience :: Science/Research
License :: OSI Approved :: BSD License
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Topic :: Scientific/Engineering
project_urls =
Documentation = https://fsspec_xrootd.readthedocs.io/
Bug Tracker = https://github.com/CoffeaTeam/fsspec-xrootd/issues
Discussions = https://github.com/CoffeaTeam/fsspec-xrootd/discussions
Changelog = https://github.com/CoffeaTeam/fsspec-xrootd/releases
[options]
packages = find:
install_requires =
fsspec
python_requires = >=3.9
include_package_data = True
package_dir =
=src
[options.packages.find]
where = src
[options.entry_points]
fsspec.specs =
root = fsspec_xrootd:XRootDFileSystem
[options.extras_require]
dev =
pytest>=6
docs =
Sphinx>=4.0
myst-parser>=0.13
sphinx-book-theme>=0.1.0
sphinx-copybutton
test =
pytest>=6
pytest-rerunfailures
pytest-timeout
[flake8]
extend-ignore = E203, E501, E722, B950, B905
select = C,E,F,W,T,B,B9,I
per-file-ignores =
tests/*: T
noxfile.py: T