-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
33 lines (30 loc) · 921 Bytes
/
setup.cfg
File metadata and controls
33 lines (30 loc) · 921 Bytes
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
[metadata]
name = cvminigames
version = attr: cvminigames.__version__
author = You
author_email = your@email.address
url = https://godatadriven.com/blog/a-practical-guide-to-setuptools-and-pyproject-toml
description = cvminigames package description
long_description = file: README.md
long_description_content_type = text/markdown
keywords = cvminigames, setuptools
license = BSD 3-Clause License
classifiers =
License :: OSI Approved :: BSD License
Programming Language :: Python :: 3
[options]
packages = find:
zip_safe = True
include_package_data = True
install_requires =
marko == 1.2.1
typer
[options.entry_points]
console_scripts =
my-example-utility = cvminigames.outp:main
nb2py = cvminigames.outp:cv_cli_nb2py
nbs2html = cvminigames.outp:cv_cli_nbs2html
bump_version = cvminigames.outp:cv_cli_bump_version
[options.package_data]
example = data/schema.json, *.txt
* = README.md