-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
74 lines (67 loc) · 1.9 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
[metadata]
name = manifestly
version = attr: manifestly.__version__
description = Manifestly is a Python package designed to generate a manifest of a directory's contents, capturing file paths and their corresponding hashes. This allows for precise synchronization between two directories based on their content, ensuring that only files with differences in content are synchronized. This package provides a reliable solution for tracking and managing file changes efficiently.
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/gdoermann/manifestly
author = Greg Doermann
author_email = manifestly@doermann.me
license = MIT
license_file = LICENSE
test_suite = src/tests
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Programming Language :: Python :: 3.13
Topic :: Software Development :: Libraries :: Python Modules
project_urls =
Source = https://github.com/gdoermann/manifestly
Tracker = https://github.com/gdoermann/manifestly/issues
[options]
python_requires = >=3.8
packages = find:
include_package_data = true
zip_safe = false
install_requires =
click
fsspec
package_dir =
=src
[options.packages.find]
where = src
[options.extras_require]
aws =
s3fs
boto3
botocore
gcs =
gcsfs
google-cloud-storage
azure =
adlfs
azure-storage-blob
extras =
tox~=4.14.2
wheel
ipython
flake8~=6.0.0
twine
pytest
pip-tools
bumpver
coverage
[flake8]
exclude = build,.git,.tox,./tests/.env
extend-ignore = E203
max-line-length = 120
[coverage:run]
omit =
src/tests/*