-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
71 lines (66 loc) · 1.5 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
[metadata]
name = research_python_template
version = 0.1.0
author = Jenn Van Osdel
author_email = jenn@globalfishingwatch.org
description = A python template repo for the Research and Innovation team at Global Fishing Watch.
license = Apache-2.0
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/GlobalFishingWatch/research-python-template
project_urls =
Bug Tracker = https://github.com/GlobalFishingWatch/research-python-template/issues
classifiers =
Programming Language :: Python :: 3
License :: OSI Approved :: Apache-2.0
Operating System :: OS Independent
[options]
packages = find:
package_dir =
= pkg
include_package_data = True
python_requires = >=3.8
install_requires =
Jinja2~=3.0.1
google-cloud-bigquery~=3.0.1
# project specific
sentinelsat~=1.1.1
pandas~=1.3.5
selenium~=4.3.0
webdriver-manager~=3.7.1
pandas-gbq~=0.17.6
rtyaml~=1.0.0
[options.entry_points]
console_scripts =
pkg_name = pkg_name.__main__
[options.packages.find]
where = pkg
include = *
# alternatively: `exclude = additional*`
[options.extras_require]
all =
%(dev)s
%(nb)s
%(test)s
dev =
black
darglint
mypy
mypy-extensions
pipdeptree
pre-commit
pytest-cov
jupytext
safety
Flake8-pyproject
magic-wormhole~=0.12.0
nb =
jupyter~=1.0.0
jupytext~=1.13.8
ipykernel~=6.15.0
test =
pytest~=7.1.2
pytest-cov~=3.0.0
[darglint]
docstring_style=google
strictness=full