Skip to content

Commit b9a4244

Browse files
committed
updated to use pyproject.toml
1 parent 498f790 commit b9a4244

File tree

4 files changed

+38
-33
lines changed

4 files changed

+38
-33
lines changed

makefile

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
all: build
2+
3+
.PHONY: build
4+
build:
5+
python3 -m build
6+
7+
.PHONY: upload
8+
upload:
9+
twine upload dist/*

pyproject.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[build-system]
2+
requires = ["setuptools"]
3+
build-backend = "setuptools.build_meta"

setup.cfg

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
[metadata]
2+
name = dconfjson
3+
version = 0.2.4
4+
requires-python = ">=3.*"
5+
author = saberd
6+
author_email = mail@saberd.com
7+
url = https://github.com/saberd/dconfjson
8+
description = Convert gnome settings between binary conf files and json
9+
long_description = file: README.md
10+
long_description_content_type = text/markdown
11+
keywords = ubuntu, gnome, config, dconf, json
12+
license = BSD 3-Clause License
13+
classifiers =
14+
Topic :: Desktop Environment :: Gnome
15+
Programming Language :: Python :: 3
16+
License :: OSI Approved :: MIT License
17+
Topic :: Utilities
18+
19+
[options]
20+
packages = find:
21+
zip_safe = True
22+
include_package_data = True
23+
24+
[options.entry_points]
25+
console_scripts =
26+
dconfjson=dconfjson.main:main

setup.py

Lines changed: 0 additions & 33 deletions
This file was deleted.

0 commit comments

Comments
 (0)