-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
67 lines (57 loc) · 1.96 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
[build-system]
requires = ["poetry-core>=1.2.2"]
build-backend = "poetry.core.masonry.api"
[tool.mypy]
show_error_context = true
pretty = true
show_column_numbers = true
show_error_codes = true
exclude = ['docs/']
[tool.mypy-mock]
ignore_missing_imports = true
[tool.mypy-pytz]
ignore_missing_imports = true
[tool.poetry]
name = "volttron-dnp3-outstation"
version = "0.0.1-rc"
description = "A Volttron agent that acts as a dnp3 outstation."
authors = ["Kefei Mo <[email protected]>"]
license = "Apache-2.0"
maintainers = ["Volttron Team <[email protected]>"]
readme = "README.md"
homepage = "https://github.com/eclipse-volttron/volttron-dnp3-outstation"
repository = "https://github.com/eclipse-volttron/volttron-dnp3-outstation"
packages = [{ include = "dnp3_outstation", from = "src" },
{ include = "vdnp3_outstation", from = "src" }
]
keywords = ["volttron", "agent", "dnp3", "outstation", "application"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Home Automation",
"Topic :: Software Development :: Embedded Systems",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9"
]
[tool.poetry.dependencies]
python = ">=3.8,<4.0"
volttron = ">=10.0.2rc0"
dnp3-python = ">=0.2.3b3, <0.3.0"
[tool.poetry.group.dev.dependencies]
pytest = ">=6.2.4"
pytest-cov = ">=3.0.0"
pytest-env = ">0.0.0"
black = ">=21.5b2"
pre-commit = ">=2.13.0"
volttron-testing = ">=0.3.1a7"
mypy = ">=0.982"
[tool.poetry.group.docs.dependencies]
Sphinx = ">=4.5.0"
sphinx-rtd-theme = ">=1.0.0"
[tool.poetry.scripts] # entry point (note: vctl start will attempt to run this)
volttron-dnp3-outstation = "dnp3_outstation.agent:main"
#vdnp3_outstation = "vdnp3_outstation.run_volttron_dnp3_outstation_cli:main"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/eclipse-volttron/volttron-dnp3-outstation/issues"