generated from mohsenhariri/template-python
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
34 lines (31 loc) · 951 Bytes
/
pyproject.toml
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
# https://peps.python.org/pep-0621/
# https://setuptools.pypa.io/en/latest/userguide/pyproject_config.html
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "jigar"
authors = [
{name = "Mohsen Hariri", email = "[email protected]"},
]
description = "A [simple] [general-purpose] Python template 🐍🚀🎉🦕"
version = "0.0.2"
keywords = ["Boilerplate", "Template"]
license = {text = "GPL-3.0 License"}
# https://github.com/pypi/warehouse/issues/869
readme = "README.rst"
requires-python = ">=3.6"
classifiers = [
"Programming Language :: Python :: 3.8",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
]
dependencies = [
# "google-api-python-client==2.60.0",
# "google-auth-oauthlib==0.5.2",
'importlib-metadata; python_version<"3.8"',
]
[tool.setuptools]
packages = ["radiopipe"]
[tool.isort]
profile = "black"