forked from ChrisRx/quickavro
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (38 loc) · 1.3 KB
/
Copy pathpyproject.toml
File metadata and controls
42 lines (38 loc) · 1.3 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
[build-system]
requires = ["setuptools>=61.0", "wheel", "requests"]
build-backend = "setuptools.build_meta"
[project]
name = "quickavro"
version = "0.1.0" # Update to your actual version
description = "A high-performance interface in Python for reading/writing Avro files."
readme = "README.md"
requires-python = ">=3.3"
license = {text = "Apache Software License"}
authors = [
{name = "ChrisRx"} # Replace with actual author name
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: POSIX :: Linux",
"Programming Language :: C",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities"
]
dependencies = [
"requests"
]
[project.entry-points.console_scripts]
quickavro = "quickavro.__main__:main"
[project.optional-dependencies]
test = ["pytest>=2.8.7"]