-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
42 lines (36 loc) · 1.34 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "f360_insert_decal_rpa"
dynamic = ["version"]
description = "f360_insert_decal_rpa is a Python library for Robotic Process Automation (RPA) of Autodesk Fusion 360's **Insert -> Decal -> Insert from my computer** operation."
authors = [{name = "Hajime Nakazato", email = "hajime@kaoriha.org"},]
license ={text = "MIT License"}
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.9",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"pywinauto >= 0.6.8 ; platform_system == \"Windows\"",
]
[project.optional-dependencies]
dev = [
"pywinauto >= 0.6.8 ; platform_system == \"Windows\"",
"Pillow >= 8.3.1 ; platform_system == \"Windows\""
]
[project.urls]
Bug_Tracker = "https://github.com/hajimen/f360_insert_decal_rpa/issues"
Changelog = "https://github.com/hajimen/f360_insert_decal_rpa/blob/master/CHANGELOG.md"
[tool.setuptools.dynamic]
version = {attr = "f360_insert_decal_rpa.__version__"}
[tool.setuptools]
include-package-data = false
[tool.setuptools.packages.find]
include = ["f360_insert_decal_rpa"]