-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
36 lines (30 loc) · 986 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
[project]
name = "synformer"
license = {file = "LICENSE"}
authors = [
{name = "Wenhao Gao", email = "[email protected]"},
{name = "Shitong Luo", email = "[email protected]"},
{name = "Connor W. Coley", email = "[email protected]"}
]
description = "SynFormer: Generative Model for Synthesizable Molecule Generation"
readme = "README.md"
requires-python = ">=3.10"
dynamic = ["version", "dependencies"]
[tool.setuptools]
packages = ["synformer"]
[tool.setuptools.dynamic]
version = {attr = "synformer.__version__"}
dependencies = {file = ["requirements.txt"]}
[tool.setuptools.package-data]
# Specify patterns for files within your package that should be included
"*" = ["*.md", "*.txt", "*.csv", "data/*"]
[tool.black]
line-length = 119
target-version = ['py310']
[tool.isort]
extra_standard_library = "typing_extensions,mypy,mypy_extensions"
profile = "black"
[tool.autoflake]
remove-all-unused-imports = true
expand-star-imports = true
ignore-init-module-imports = true