This repository was archived by the owner on Sep 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.cfg
More file actions
53 lines (49 loc) · 1.34 KB
/
setup.cfg
File metadata and controls
53 lines (49 loc) · 1.34 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
[metadata]
name = easydata
description = Data transformation and manipulation library
long_description = file: README.rst
long_description_content_type = text/x-rst
url = https://github.com/sitegroove/easydata
author = EasyData developers
author_email = grabnarrok@gmail.com
license = BSD 3-Clause
license_file = LICENSE
license_files =
LICENSE
classifiers =
Development Status :: 2 - Pre-Alpha
Intended Audience :: Developers
License :: OSI Approved :: BSD License
Natural Language :: English
Operating System :: OS Independent
Programming Language :: Python :: 3
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
project_urls =
Bug Reports = https://github.com/sitegroove/easydata/issues
Source = https://github.com/sitegroove/easydata
Documentation = https://easydata.readthedocs.io/en/latest/
[options]
packages = find:
include_package_data = true
python_requires = >= 3.8
[bdist_wheel]
universal = 1
[flake8]
max-line-length = 89
select = E,W,F,I,C
ignore =
# Line break occurred before a binary operator, handled by Black
W503,
# Line break occurred after a binary operator, handled by Black
W504,
# Not PEP8 compliant
E203,
exclude = .venv/*
application-import-names = easydata
max-complexity = 22
[coverage:run]
branch = True
source =
easydata
tests