-
Notifications
You must be signed in to change notification settings - Fork 21
/
pyproject.toml
93 lines (78 loc) · 2.22 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
[project]
name = 'neo3-boa'
description = 'A Python compiler for the Neo3 Virtual Machine'
readme = 'README.md'
requires-python = '>= 3.11,< 3.13'
license = {file = 'LICENSE' }
keywords = ['compiler', 'NEO', '.nef', 'blockchain', 'smartcontract', 'development', 'dApp']
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
]
dynamic = ['version']
dependencies = [
'base58>=1.0.3',
'wheel>=0.30.0',
'requests==2.31.0',
]
[project.optional-dependencies]
dev = [
'autopep8>=1.4.4',
'bump-my-version==0.10.0',
'coverage>=6.0.1',
'filelock>=3.10.7',
'pycodestyle>=2.11.1',
'twine>=1.10.0',
]
test = [
'boa-test-constructor==0.3.1',
]
docs = [
'myst-parser==1.0.0',
'Sphinx==5.0.0',
'sphinx-rtd-theme==1.2.1',
]
[project.urls]
repository = 'https://github.com/CityOfZion/neo3-boa'
documentation = 'https://dojo.coz.io/neo3/boa/index.html'
changelog = 'https://github.com/CityOfZion/neo3-boa/blob/master/CHANGELOG.md'
[project.scripts]
neo3-boa = 'boa3.cli:main'
install_cpm = 'boa3.cpm:main'
[tool.setuptools.packages.find]
exclude = ['boa3_test.tests.*_tests*']
include = [
'boa3', 'boa3.*',
'boa3_test',
'boa3_test.tests', 'boa3_test.tests.*',
'boa3_test.test_drive', 'boa3_test.test_drive.*'
]
[tool.setuptools.package-data]
boa3 = ['py.typed']
[tool.setuptools.dynamic]
version = { attr = 'boa3.__version__' }
[tool.bumpversion]
current_version = '1.2.1'
commit = true
tag = true
[[tool.bumpversion.files]]
filename = './pyproject.toml'
search = "current_version = '{current_version}'"
replace = "current_version = '{new_version}'"
[[tool.bumpversion.files]]
filename = './boa3/__init__.py'
search = "__version__ = '{current_version}'"
replace = "__version__ = '{new_version}'"
[[tool.bumpversion.files]]
filename = './docs/make-pdf.py'
search = "__version__ = '{current_version}'"
replace = "__version__ = '{new_version}'"
[tool.coverage.run]
source = ['boa3']
omit = ['boa3/builtin/*']
[tool.coverage.report]
omit = ['boa3_test/*']