comparison setup.cfg @ 6:5f6d1a28051a

add python package config files
author Dennis Concepcion Martin <dennisconcepcionmartin@gmail.com>
date Sun, 24 Oct 2021 15:18:54 +0200
parents
children 6a0a8cce058e
comparison
equal deleted inserted replaced
5:1a8d94b500d8 6:5f6d1a28051a
1 [metadata]
2 name = example-pkg-YOUR-USERNAME-HERE
3 version = 0.0.1
4 author = Example Author
5 author_email = author@example.com
6 description = A small example package
7 long_description = file: README.md
8 long_description_content_type = text/markdown
9 url = https://github.com/pypa/sampleproject
10 project_urls =
11 Bug Tracker = https://github.com/pypa/sampleproject/issues
12 classifiers =
13 Programming Language :: Python :: 3
14 License :: OSI Approved :: MIT License
15 Operating System :: OS Independent
16
17 [options]
18 package_dir =
19 = src
20 packages = find:
21 python_requires = >=3.8
22
23 [options.packages.find]
24 where = src