-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.cfg
36 lines (31 loc) · 853 Bytes
/
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
[metadata]
name = depfinder
description = Find all the imports in your library
author = Eric Dill
author_email = [email protected]
url = http://github.com/ericdill/depfinder
long_description_content_type = text/markdown
long_description = file: README.md
license = BSD-3-Clause
license_file = LICENSE
project_urls =
Documentation = https://ericdill.github.io/depfinder
Bug Tracker = https://github.com/ericdill/depfinder/issues
Source Code = https://github.com/ericdill/depfinder
[options]
zip_safe = True
include_package_data = True
install_requires =
pyyaml
stdlib-list; python_version < "3.10"
requests
python_requires = >=2.7
packages = find:
[options.entry_points]
console_scripts =
depfinder = depfinder.cli:cli
[options.extras_require]
conda-forge =
conda-forge-metadata>=0.7.0
[flake8]
max-line-length=300