-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
38 lines (29 loc) · 973 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
[build-system]
requires = ["setuptools>=64", "setuptools_scm[toml]>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "nasdaq-protocols"
description = "Nasdaq protocols python library"
license = {file = "docs/LICENSE.rst"}
requires-python = ">= 3.10"
classifiers = [
'Development Status :: 3 - Alpha',
'Topic :: Software Development :: Libraries :: Python Modules'
]
dependencies = [
'attrs>=23.1',
'chevron>=0.14.0',
'click>=8.1'
]
dynamic = ["version"]
[project.scripts]
nasdaq-ouch-codegen="nasdaq_protocols.ouch.codegen:generate"
nasdaq-itch-codegen="nasdaq_protocols.itch.codegen:generate"
nasdaq-itch-tools-codegen="nasdaq_protocols.itch.codegen:generate_itch_tools"
nasdaq-fix-codegen="nasdaq_protocols.fix.codegen:generate"
nasdaq-protocols-create-new-project="nasdaq_protocols.tools.new_project:create"
[tool.setuptools_scm]
[tool.setuptools.packages.find]
where = ["src"]
include = ["nasdaq_protocols*"]
namespaces = false