forked from helaoban/fixtrate
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (38 loc) · 1.01 KB
/
pyproject.toml
File metadata and controls
42 lines (38 loc) · 1.01 KB
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
[tool.poetry]
name = "fixtrate"
version = "0.3.0-1"
description = "Tools for interacting with the FIX protocol."
authors = ["Carlo Holl <carloholl@gmail.com>"]
license = "MIT"
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: Implementation :: CPython",
"Development Status :: 2 - Pre-Alpha",
]
packages = [
{ include = "fixtrate" },
]
[tool.poetry.dependencies]
python = "^3.6"
aenum = ">=2.1.2"
async-timeout = ">=2.0"
aioredis = ">=1.1.0"
simplefix = ">=1.0.12"
untangle = ">=1.1.1"
python-dateutil = ">=2.6.1"
typing_extensions = "*"
sortedcontainers = "^2.2.2"
[tool.poetry.dev-dependencies]
flake8 = "*"
pytest = "==3.6.3"
pytest-asyncio = "==0.8.0"
sphinx = "==1.7.9"
sphinxcontrib-asyncio = "==0.2.0"
[tool.poetry.scripts]
fixtrate = "fixtrate.cli.main:run"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"