-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
39 lines (33 loc) · 1.1 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
[build-system]
requires = ["setuptools", "wheel", "twine", "build"]
build-backend = "setuptools.build_meta"
[project]
name = "vfxnaming"
version = "1.5.1-beta"
authors = [
{ name="Chris Granados", email="info@chrisgranados.com" },
]
description = "VFX Naming Conventions Framework"
readme = "README.rst"
requires-python = ">=3.10"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.10",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
keywords = ["vfx", "games", "naming", "convention", "gaming", "tech", "art", "pipeline"]
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["src"]
include = ["*"]
[project.optional-dependencies]
tests = ["pytest", "pytest-cov", "pytest-datafiles", "python-coveralls", "flake8"]
lint = ["ruff"]
docs = ["sphinx", "sphinx_rtd_theme"]
build = ["setuptools", "twine", "wheel", "build"]
[project.urls]
Repository = "https://github.com/xiancg/vfxnaming"
Documentation = "https://naming-conventions.readthedocs.io/en/latest/"