-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.cfg
More file actions
27 lines (25 loc) · 784 Bytes
/
setup.cfg
File metadata and controls
27 lines (25 loc) · 784 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
[metadata]
name = Squarer
description = A package that squares integers
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/AmadeusITGroup/python-project-starter
author = your_name_here
author_email = no_reply@github.com
license_files = LICENSE
classifiers =
Development Status :: 5 - Production/Stable
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: Implementation :: CPython
Programming Language :: Python :: Implementation :: PyPy
[options]
zip_safe = False
include_package_data = True
packages = find:
python_requires = >=3.9
setup_requires =
setuptools_scm
[options.entry_points]
console_scripts =
square = package.__main__:main