-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.cfg
107 lines (98 loc) · 2.44 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
[wipac:cicd_setup_builder]
pypi_name = wipac-file-catalog
python_min = 3.10
author = WIPAC Developers
author_email = developers@icecube.wisc.edu
keywords_spaced = metadata data warehouse archive L2 PFDST PFFilt PFRaw i3 simulation iceprod
package_dirs = file_catalog
[metadata] # generated by wipac:cicd_setup_builder: name, version, url, author, author_email, description, long_description, long_description_content_type, keywords, license, classifiers, download_url, project_urls
name = wipac-file-catalog
version = attr: file_catalog.__version__
url = https://github.com/WIPACrepo/file_catalog
author = WIPAC Developers
author_email = developers@icecube.wisc.edu
description = Store file metadata information in a file catalog
long_description = file: README.md
long_description_content_type = text/markdown
keywords =
metadata
data
warehouse
archive
L2
PFDST
PFFilt
PFRaw
i3
simulation
iceprod
WIPAC
IceCube
license = MIT
classifiers =
Development Status :: 5 - Production/Stable
License :: OSI Approved :: MIT License
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
download_url = https://pypi.org/project/wipac-file-catalog/
project_urls =
Tracker = https://github.com/WIPACrepo/file_catalog/issues
Source = https://github.com/WIPACrepo/file_catalog
[semantic_release] # fully-generated by wipac:cicd_setup_builder
version_variable = file_catalog/__init__.py:__version__
upload_to_pypi = True
patch_without_tag = True
commit_parser = semantic_release.history.emoji_parser
major_emoji = [major]
minor_emoji = [minor]
patch_emoji = [fix], [patch]
branch = master
[options] # generated by wipac:cicd_setup_builder: python_requires, packages
packages = find:
install_requires =
coloredlogs
ldap3
motor<3
pymongo<4
requests
requests-futures
requests-toolbelt
tornado
wipac-rest-tools[telemetry]
python_requires = >=3.10, <3.13
[options.extras_require]
dev =
crawler
flake8
more-itertools
mypy
pytest
pytest-asyncio
pytest-cov
ruff
types-PyMySQL
types-python-dateutil
types-requests
mypy =
%(dev)s
[options.package_data] # generated by wipac:cicd_setup_builder: '*'
* = py.typed
file_catalog = data/www/*, data/www_templates/*
[options.packages.find] # generated by wipac:cicd_setup_builder: include/exclude
include =
file_catalog
file_catalog.*
exclude =
test
tests
doc
docs
resource
resources
example
examples
[bdist_wheel]
universal = 1
[flake8]
ignore = E501