-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
54 lines (47 loc) · 1.17 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
[build-system]
requires = ["setuptools>=61.2"]
build-backend = "setuptools.build_meta"
[project]
name = "versync"
classifiers = [
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
]
license = {text = "BSD 2 Clause"}
description = "A Collaboration framework for binary analysis tasks."
urls = {Homepage = "https://github.com/binsync/versync"}
requires-python = ">= 3.10"
dependencies = [
"libbs>=1.20.0",
"coloredlogs>=15.0.1",
"dm-sonnet>=1.34",
"MarkupSafe>=2.0.0",
"networkx>=2.5",
"pandas>=1.3.5",
"scikit-learn>=1.02",
"tensorflow-estimator>=1.14.0",
"tensorflow-probability>=0.7",
"tensorflow>=1.14.0",
"tqdm",
"numpy>=1.22.3",
"scipy>=1.7.3"
]
dynamic = ["version"]
[project.readme]
file = "README.md"
content-type = "text/markdown"
[project.optional-dependencies]
test = [
"flake8",
"pytest",
]
[project.scripts]
versync = "versync.__main__:main"
[tool.setuptools]
include-package-data = true
license-files = ["LICENSE"]
[tool.setuptools.packages]
find = {namespaces = false}
[tool.setuptools.dynamic]
version = {attr = "versync.__version__"}