-
Notifications
You must be signed in to change notification settings - Fork 16
/
pyproject.toml
40 lines (36 loc) · 946 Bytes
/
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
[build-system]
# build the package with [flit](https://flit.readthedocs.io)
requires = ["flit_core >=3.4,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "pyinsales"
version = "1.8.1"
description = """InSales e-commerce platform API bindings"""
authors = [{name = "Victor Nakoryakov", email = "[email protected]"}]
readme = "README.md"
license = {file = "LICENSE"}
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Natural Language :: Russian",
"Topic :: Utilities",
]
keywords = ["insales", "API", "bindings"]
requires-python = ">=3.6"
dependencies = [
"iso8601",
]
[project.optional-dependencies]
debug = [
"wdb",
]
release = [
"flit",
]
[project.urls]
Homepage = "https://github.com/nailxx/pyinsales"
[tool.flit.module]
name = "insales"