-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.cfg
58 lines (52 loc) · 1.37 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
[metadata]
name = packaged
version = 0.6.1
description = The easiest way to ship python applications.
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/tusharsadhwani/packaged
author = Tushar Sadhwani
author_email = [email protected]
license = GPL-2.0-or-later
license_file = LICENSE
classifiers =
License :: OSI Approved :: GNU General Public License v2 (GPLv2)
Operating System :: OS Independent
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Programming Language :: Python :: Implementation :: CPython
Typing :: Typed
[options]
packages = find:
install_requires =
yen>=0.4.2
tomli>=1.1.0; python_version<'3.11'
yaspin>=2.5.0
pycify>=1.2.0
python_requires = >=3.8
package_dir = =src
[options.packages.find]
where = ./src
[options.entry_points]
console_scripts =
packaged=packaged.cli:cli
[options.extras_require]
dev =
black
mypy
pytest
pytest-cov
pytest-xdist
tox
[options.package_data]
packaged =
py.typed
makeself.sh
makeself-header.sh
[tool:pytest]
addopts = --cov --cov-report=term-missing -nauto