-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (43 loc) · 1.08 KB
/
pyproject.toml
File metadata and controls
52 lines (43 loc) · 1.08 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
[build-system]
requires = ["setuptools>=77.0.0"]
build-backend = "setuptools.build_meta"
[project]
name = "pyLIFT"
version = "0.0.1dev1"
description = "preparation of LAMMPS input for polymer simulations"
readme = "README.md"
requires-python = ">=3.8"
license = "MIT"
license-files = ["LICENSE"]
authors = [
{ name = "Brandon C. Tapia", email = "bctapia@mit.edu" } #,
# { name = "TBA" },
# { name = "TBA" },
# { name = "TBA" }
]
dependencies = [
"numpy",
"matplotlib"]
keywords = ["membranes", "gas separation", "polymer modeling"]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Chemistry",
"Topic :: Scientific/Engineering :: Physics"]
[project.optional-dependencies]
dev = ["pytest", "black", "build", "twine"]
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["."]
include = ["pylift*"]
[tool.black]
target-version = ["py313"]
line-length = 100
skip-magic-trailing-comma = true
exclude = '''
/(
examples
)/
'''