forked from ProCern/asyncinotify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
35 lines (31 loc) · 1.06 KB
/
pyproject.toml
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
[project]
name = 'asyncinotify'
description = 'A simple optionally-async python inotify library, focused on simplicity of use and operation, and leveraging modern Python features'
version = '4.0.6'
readme = 'README.rst'
requires-python = '>= 3.6, < 4'
license = {text = 'MPL-2.0'}
keywords = [
'async',
'inotify',
]
classifiers=[
'Development Status :: 6 - Mature',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Operating System :: POSIX :: Linux',
'License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
'Intended Audience :: Developers',
'Framework :: AsyncIO',
]
[[project.authors]]
name = "Taylor C. Richberger"
email = "[email protected]"
[project.urls]
repository = 'https://github.com/absperf/asyncinotify/'
documentation = 'https://asyncinotify.readthedocs.io/'
[build-system]
build-backend = "flit_core.buildapi"
requires = ["flit_core >=3.2,<4", 'wheel']