-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
42 lines (38 loc) · 1.01 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
[metadata]
name = getpack
version = attr: getpack.__version__
author = Konstantin Maslyuk
author_email = [email protected]
description = Declarative external resources with implicit deployment
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/kalemas/getpack
project_urls =
Bug Tracker = https://github.com/kalemas/getpack/issues
classifiers =
Programming Language :: Python :: 3
Programming Language :: Python :: 2
License :: OSI Approved :: MIT License
Operating System :: Microsoft :: Windows :: Windows 10
[options]
package_dir=
=src
packages = find:
install_requires =
certifi
pathlib; python_version < "3"
six
typing; python_version < "3"
fasteners==0.16.3 # for py2 compatibility
[options.packages.find]
where=src
[options.extras_require]
dev =
flake8
flake8-import-order
futures; python_version < "3"
mypy; python_version >= "3"
pytest
yapf; python_version >= "3"
[flake8]
import-order-style = google