-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
57 lines (46 loc) · 1.42 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
[project]
name = "molcrafts-molpack"
version = "0.0.1"
authors = [
{ name = "Roy Kid", email = "[email protected]" }
]
description = "Fundamental package for computational chemistry in Python"
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"License :: OSI Approved :: BSD License",
"Development Status :: 1 - Planning",
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'Programming Language :: C',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: Implementation :: CPython',
'Topic :: Software Development',
'Topic :: Scientific/Engineering',
'Typing :: Typed',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Operating System :: Unix',
'Operating System :: MacOS',
]
license = {file = "LICENSE"}
dependencies = [
"numpy", # https://github.com/numpy/numpy,
# "molpy"
]
[project.optional-dependencies]
dev = ["pytest"]
test = ["pytest", "coverage"]
[project.urls]
Homepage = "https://github.com/MolCrafts/molpy"
Issues = "https://github.com/MolCrafts/molpy/issues"
[build-system]
requires = [
"setuptools",
]
build-backend = "setuptools.build_meta"