-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
43 lines (40 loc) · 1.13 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
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"setuptools ~= 65.4.0",
"wheel ~= 0.37.1"
]
[project]
name = "ciris"
version = "1.0.0"
authors = [
{name = "nickythelion", email = "nickythelionfurry@yandex.ru"}
]
description = "A lightweight Python library that makes working with color easy"
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Other Audience",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Utilities",
"Typing :: Typed"
]
dependencies = []
[project.optional-dependencies]
dev = [
"pytest ~=7.2.0",
"typing_extensions ~=4.4.0",
"black ~=22.10.0"
]
[project.urls]
"Homepage" = "https://github.com/nickythelion/iris"