-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
40 lines (33 loc) · 983 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
37
38
39
40
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "SULLEY"
authors = [
{name = "Côme Cattin", email = "come.cattin@sorbonne-universite.fr"}
]
description = "Symmetry Understanding of Local frames for Learning Equivariant geometrY"
readme = "README.MD"
version = "1.0.0"
dependencies = [
"rdkit",
"networkx",
"pytest",
"openbabel-wheel",
]
license = {file = "LICENSE"}
keywords = ["Local Frame", "Geometry", "Equivariant", "Polarisation"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Education",
"Topic :: Scientific/Engineering :: Chemistry",
"Natural Language :: English",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
[project.urls]
Repository = "https://github.com/comecattin/SULLEY"
Issues = "https://github.com/comecattin/SULLEY/issues"
[project.scripts]
sulley = "sulley.sulley:cli"