generated from csc301-2023-fall/deliverable-documents
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
58 lines (50 loc) · 1.48 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
[build-system]
requires = ["setuptools~=65.5.1", "wheel~=0.41.2"]
build-backend = "setuptools.build_meta"
[project]
name = "Astra"
version = ""
description = "Telemetry monitoring program developed for QEYnet."
readme = "README.md"
requires-python = "~=3.12"
license = "MIT"
keywords = []
authors = [
{name = "Andy Guo", email = "[email protected]"},
{name = "Lingyun Jiang", email = "[email protected]"},
{name = "Bonan Luan", email = "[email protected]"},
{name = "Alexander Mathioudakis", email = "[email protected]"},
{name = "Liam Odero", email = "[email protected]"},
{name = "Albert Yan", email = "[email protected]"}
]
maintainers = []
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: End Users/Desktop :: Science/Research",
"Environment :: Win32 (MS Windows)",
"Operating System :: Microsoft :: Windows",
"Natural Language :: English",
"Topic :: Scientific/Engineering",
"Programming Language :: Python :: 3.12",
]
dependencies = [
]
[project.urls]
source = ""
tracker = ""
documentation = ""
[project.scripts] # If any.
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
exclude = []
[tool.flake8]
ignore = [
"W503" # Line break occurred before a binary operator.
]
exclude = [
".git", ".idea", "build", "config", "data", "dist", "docs", "venv", "wheels",
"*.egg", "*.egg-info/"
]
max-line-length = 100
count = true