-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
executable file
·45 lines (42 loc) · 1.36 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
# Copyright 2020-2024 The MOKIT Developers. All Rights Reserved.
[build-system]
requires = ["setuptools>=61.0", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Fortran',
'Programming Language :: Python :: 3',
'Topic :: Software Development',
'Topic :: Scientific/Engineering',
'Operating System :: POSIX',
]
name = 'mokit'
authors = [
{ name = 'Jingxiang Zou', email = '[email protected]'},]
description = 'MOKIT: Molecular Orbital KIT'
license = {text = 'Apache License 2.0'}
keywords = ['quantum-chemistry', 'computational-chemistry']
version = "1.2.7rc1"
#dynamic = ["version"]
requires-python = ">=3.8"
#dependencies = [
# 'numpy>=1.21',
# 'mkl>=2022',
# 'libgfortran5'
#]
[project.urls]
Homepage = 'http://gitlab.com/jxzou/mokit'
Repository = 'http://gitlab.com/jxzou/mokit'
Documentation = "http://jeanwsr.gitlab.io/mokit-doc-mdbook"
#PLATFORMS = ['Linux']
#[tool.setuptools.packages.find]
#where = ["."]
#include = ["mokit", "mokit.*"]
#
#[tool.setuptools.dynamic]
#version = { attr = "mokit.__version__"}
#readme = { file = "README.md"}