-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (50 loc) · 1.69 KB
/
Copy pathpyproject.toml
File metadata and controls
53 lines (50 loc) · 1.69 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>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "garment-line-efficiency"
version = "1.0.0"
description = "Sewing line efficiency calculator for garment factories — calculates efficiency %, target output, required workers, line balance and bottleneck analysis. Based on industry-standard SAM formula. Built and used in production by Scan ERP."
readme = "README.md"
requires-python = ">=3.7"
license = { text = "MIT" }
authors = [
{ name = "Santosh Rijal", email = "noreply@scanerp.pro" },
]
keywords = [
"line-efficiency",
"sewing-line",
"production-efficiency",
"sam",
"smv",
"line-balance",
"bottleneck",
"garment-production",
"garment-industry",
"apparel",
"manufacturing",
"cmt-factory",
"industrial-engineering",
"scan-erp",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Manufacturing",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Office/Business",
"Topic :: Scientific/Engineering",
]
[project.urls]
Homepage = "https://scanerp.pro/blog/improve-line-efficiency-garment-factory.html"
Repository = "https://github.com/drmcoder/garment-line-efficiency"
Issues = "https://github.com/drmcoder/garment-line-efficiency/issues"
[tool.setuptools.packages.find]
where = ["src"]