-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
68 lines (58 loc) · 1.61 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
# -*- coding: utf-8 -*-
# https://packaging.python.org/en/latest/guides/writing-pyproject-toml/
[project]
name = 'multigit'
authors = [
{ name = 'Jesús M. Navarro', email = '[email protected]' },
]
description = 'Manages git repos within git repos.'
readme = 'README.md'
keywords = ['Python', 'git-utilities']
license = { text = 'GPL-3.0' }
dynamic = ['version']
classifiers = [
'Programming Language :: Python :: 3',
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
]
requires-python = '>=3.7'
dependencies = [
'Cerberus',
'colorama',
'GitPython',
'PyYAML',
]
[project.urls]
Documentation = 'https://jmnavarrol.github.io/python-multigit/'
Source = 'https://github.com/jmnavarrol/python-multigit'
'Bug Tracker' = 'https://github.com/jmnavarrol/python-multigit/issues'
[project.scripts]
multigit = 'multigit:__main__.main'
[project.optional-dependencies]
# Other dependencies for development environment
# Create a virtualenv with --editable "./[development]" to use them
development = [
'hatch',
'Sphinx',
'sphinxcontrib-programoutput',
'sphinx-rtd-theme',
'twine',
]
[build-system]
requires = [
'hatch',
]
build-backend = 'hatchling.build'
[tool.hatch.version]
path = 'src/multigit/__main__.py'
[tool.hatch.build]
packages = [
'src/multigit',
]
# This strips 'src/' from the result (so package/module works as expected)
sources = ['src']
# This allows editable mode with --editable "./[development]"
dev-mode-dirs = ['src/']