forked from chython/chython
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
67 lines (58 loc) · 1.88 KB
/
pyproject.toml
File metadata and controls
67 lines (58 loc) · 1.88 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
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
[tool.poetry]
name = 'chython'
version = '1.81'
description = 'Library for processing molecules and reactions in python way'
authors = ['Ramil Nugmanov <nougmanoff@protonmail.com>']
license = 'LGPLv3'
readme = 'README.rst'
homepage = 'https://github.com/chython/chython'
documentation = 'https://chython.readthedocs.io'
classifiers=[
'Environment :: Plugins',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.8',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Chemistry',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules'
]
include = [
{path = 'chython/*/*.pyd', format = 'wheel'},
{path = 'chython/*/*.so', format = 'wheel'},
{path = 'chython/files/libinchi/libinchi.*', format = 'wheel'}
]
[tool.poetry.dependencies]
python = '^3.8'
cachedmethods = '^0.1.4'
lazy-object-proxy = '^1.6'
lxml = '^4.1'
py-mini-racer = '^0.6.0'
numpy = '^1.23.3'
chytorch-rxnmap = {version = '^1.4', optional = true}
rdkit = {version = '^2023.9', optional = true}
[tool.poetry.extras]
mapping = ['chytorch-rxnmap']
rdkit = ['rdkit']
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
pytest = '^7.4.3'
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
nbsphinx = '^0.9.3'
pandoc = '^2.3'
rdkit = '^2023.9.1'
ipython = '^8.12.1'
[build-system]
requires = ['poetry-core', 'setuptools', 'cython>=3.0.5']
build-backend = 'poetry.core.masonry.api'
[tool.poetry.build]
script = 'build.py'
generate-setup-file = false