-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (46 loc) · 1.66 KB
/
pyproject.toml
File metadata and controls
55 lines (46 loc) · 1.66 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', 'packaging', 'cython==3.1.2']
build-backend = 'setuptools.build_meta'
[project]
dynamic = ['version']
name = 'python-efl'
requires-python = '>= 3.6'
description = 'Python bindings for Enlightenment Foundation Libraries'
readme = 'README.md'
license = 'LGPL-3.0-only'
license-files = ['COPYING', 'COPYING.LESSER']
keywords = [
'efl', 'wrapper', 'binding', 'enlightenment', 'eo',
'evas', 'ecore', 'edje', 'emotion', 'elementary', 'ethumb',
]
classifiers = [
'Development Status :: 5 - Production/Stable',
'Environment :: X11 Applications',
'Environment :: Console :: Framebuffer',
'Intended Audience :: End Users/Desktop',
'Operating System :: POSIX',
'Programming Language :: C',
'Programming Language :: Cython',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development :: User Interfaces',
'Topic :: Software Development :: Widget Sets',
]
authors = [
{name = 'Davide Andreoli', email = '[email protected]'},
{name = 'Kai Huuhko', email = '[email protected]'},
]
maintainers = [
{name = 'Davide Andreoli', email = '[email protected]'}
]
[project.urls]
Homepage = 'https://www.enlightenment.org'
Documentation = 'https://docs.enlightenment.org/python-efl/current/'
Repository = 'https://git.enlightenment.org/enlightenment/python-efl'
Changelog = 'https://git.enlightenment.org/enlightenment/python-efl/raw/branch/master/ChangeLog'
[project.optional-dependencies]
doc = ['sphinx', 'graphviz']
[tool.setuptools.packages.find]
where = ['src']
[tool.setuptools.dynamic]
version = {attr = 'efl.__version__'}