File: pyproject.toml

package info (click to toggle)
tractor 5.1.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, trixie
  • size: 244 kB
  • sloc: python: 1,465; xml: 71; makefile: 4; sh: 2
file content (56 lines) | stat: -rw-r--r-- 1,134 bytes parent folder | download
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
[project]
name = "traxtor"
version = "5.1.0"
authors = [
    {name = "Danial Behzadi", email = "dani.behzi@ubuntu.com"},
]
description = "Setup an onion routing proxy"
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
    "Programming Language :: Python :: 3",
    "License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
    "Operating System :: OS Independent",
]
dependencies = [
    "PyGObject",
    "fire",
    "pysocks",
    "stem",
]
keywords = [
    "Tor",
    "onion",
    "stem",
]

[project.license]
file = "LICENSE"

[project.scripts]
tractor = "tractor.tractor:main"

[project.urls]
"Homepage" = "https://tractor.frama.io/tractor"
"Bug Tracker" = "https://framagit.org/tractor/tractor/-/issues"
"Documentation" = "https://framagit.org/tractor/tractor/-/blob/main/tractor/man/tractor.1"
"Source Code" = "https://framagit.org/tractor/tractor"

[tool.pylint]
disable = [
    "E1101",  # no-member
]

[tool.flit.module]
name = "tractor"

[tool.tox]
envlist = [
    "py311",
    "py312",
    "py313",
]

[tool.tox.env_run_base]
commands = [["python", "-m", "unittest", "discover", "tests"]]