-
-
Notifications
You must be signed in to change notification settings - Fork 111
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (47 loc) · 1.4 KB
/
Copy pathpyproject.toml
File metadata and controls
53 lines (47 loc) · 1.4 KB
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
[build-system]
requires = ['setuptools']
build-backend = 'setuptools.build_meta'
[project]
name = 'dotdrop'
description = 'Save your dotfiles once, deploy them everywhere'
readme = 'README.md'
authors = [ {name = 'deadc0de6', email = 'deadc0de6@foo.bar'}, ]
license = { text = "GPL-3.0" }
requires-python = ">=3"
classifiers = [
'Development Status :: 5 - Production/Stable',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'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 :: 3.13',
'Programming Language :: Python :: 3.14',
]
keywords = ['dotfiles', 'jinja2']
dependencies = [
'Jinja2',
'distro',
'docopt-ng',
'packaging',
'python-magic',
'requests',
'ruamel.yaml',
'tomli; python_version < "3.11"',
'tomli_w',
]
dynamic = ['version']
[project.urls]
Documentation = 'https://dotdrop.readthedocs.io'
Repository = 'https://github.com/deadc0de6/dotdrop'
[project.optional-dependencies]
dev = ['check-manifest']
test = ['coverage', 'pytest', 'pytest-cov']
[project.scripts]
dotdrop = 'dotdrop:main'
[tool.setuptools.dynamic]
version = {attr = 'dotdrop.version.__version__'}
[tool.setuptools.packages.find]
include = ['dotdrop']