-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (46 loc) · 1.58 KB
/
pyproject.toml
File metadata and controls
54 lines (46 loc) · 1.58 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
54
[build-system]
requires = ["setuptools >= 77.0.3"]
build-backend = "setuptools.build_meta"
[project]
name = "FFGo"
dynamic = ["version"]
authors = [
{ name="Florent Rougon", email="f.rougon@frougon.net" },
]
description = "A graphical launcher for the FlightGear flight simulator"
readme = "README.rst"
license = "WTFPL"
requires-python = ">=3.4"
keywords = [
"FlightGear", "flightgear", "flight", "simulator", "launcher", "FFGo", "FGo!",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: End Users/Desktop",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Games/Entertainment :: Simulation",
]
dependencies = ["CondConfigParser"]
[project.optional-dependencies]
images = ["Pillow"]
geo = ["geographiclib"]
[project.scripts]
ffgo = "ffgo.main:main"
[project.gui-scripts]
ffgo-noconsole = "ffgo.main:main"
[project.urls]
Homepage = "https://frougon.net/projects/FFGo/"
Screenshots = "https://frougon.net/projects/FFGo/gallery/"
"FFGo doc. on the FlightGear wiki" = "https://wiki.flightgear.org/FFGo"
"FFGo conditional config doc." = "https://frougon.net/projects/FFGo/doc/README-conditional-config/"
Repository = "https://github.com/frougon/FFGo"
Issues = "https://github.com/frougon/FFGo/issues"
Changelog = "https://raw.githubusercontent.com/frougon/FFGo/master/ChangeLog"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.exclude-package-data]
"*" = ["Makefile*", "*.pot", "*.po", "*.svg", "*.xcf"]
"ffgo.data.pics" = ["COPYING.txt"]
[tool.setuptools.dynamic]
version = {attr = "ffgo.__version__"}