-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
56 lines (50 loc) · 1.23 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
[metadata]
name = pymetager
version = 0.0.1
url = https://github.com/buildnn/pypack-metager
project_urls =
Repository = https://github.com/buildnn/pypack-metager
Documentation = https://github.com/buildnn/pypack-metager
Code = https://www.github.com/buildnn/pypack-metager
Issue tracker = https://github.com/buildnn/pypack-metager/issues
author = BuildNN Team
author_email = dev@buildnn.com
license = BSD 4-Clause License
license_file = LICENSE
maintainer = BuildNN Team
maintainer_email = dev@buildnn.com
description = A Python package metadata manager by BuildNN.
long_description = file: README.rst
classifiers =
Environment :: Console
Intended Audience :: Developers
Operating System :: POSIX :: Linux
Operating System :: Unix
Programming Language :: Python :: 3
Topic :: Software Development :: Libraries :: Python Modules
keywords =
pypack_metager
buildnn
[options]
packages = find:
package_dir = = src
include_package_data = true
python_requires = >= 3.8
install_requires =
click
packaging
[options.entry_points]
console_scripts =
pymetager = pymetager.cli:cli
[options.packages.find]
where = src
include =
*
exclude =
*.egg-info
[flake8]
max-line-length = 88
per-file-ignores =
__init__.py: F401
[black]
line-length = 88