-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
101 lines (89 loc) · 1.98 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
# setuptools config
# see http://setuptools.readthedocs.io/en/latest/setuptools.html#configuring-setup-using-setup-cfg-files
[metadata]
name = calendar-sync-magic
version = 0.0.1
description = Magic to Sync Calendars
long_description = file: README.md
long_description_content_type = text/markdown
license = 'Apache'
author = Holden Karau
author_email = [email protected]
classifiers =
Operating System :: Unix
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Topic :: Software Development :: Libraries :: Python Modules
[options]
include_package_data = True
packages = find:
install_requires =
django >= 4.0
google_auth_oauthlib
google-api-python-client
python-dateutil
pytz
rfc3339
django-regex-field
tests_require =
pytest
pytest-django
tox
isort
black
flake8
django-stubs
types-python-dateutil
[options.packages.find]
include =
calendar_sync_magic
calendar_sync_magic.*
[options.extras_require]
tests =
pytest
pytest-django
tox
isort
black
flake8
pep8 = flake8
coverage = pytest-cov
docs =
sphinx
sphinx-rtd-theme
release =
tbump
twine
# 3rd party configuration
[aliases]
test=pytest
[isort]
combine_as_imports = true
default_section = THIRDPARTY
include_trailing_comma = true
line_length = 88
multi_line_output = 3
force_grid_wrap = 0
use_parentheses = True
ensure_newline_before_comments = True
skip = env,.tox,.history,.eggs
known_django=django
known_first_party=cal_sync_magic
sections=FUTURE,STDLIB,DJANGO,THIRDPARTY,FIRSTPARTY,LOCALFOLDER
[tool:pytest]
testpaths = tests
DJANGO_SETTINGS_MODULE=testapp.settings
[pep8]
[flake8]
max-line-length=88
exclude=env,.tox,docs
[mypy]
mypy_path = ./cal_sync_magic
plugins =
mypy_django_plugin.main
strict_optional = True
ignore_missing_imports = True
[mypy.plugins.django-stubs]
django_settings_module = testapp.settings