-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (40 loc) · 1.17 KB
/
pyproject.toml
File metadata and controls
45 lines (40 loc) · 1.17 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
[build-system]
requires = ["setuptools>=61.2", "versioningit"]
build-backend = "setuptools.build_meta"
[project]
name = "flowermd"
description = "Framework for building and running coplex simulaiton workflows with MosDeF and HOOMD-Blue."
readme = "README.md"
authors = [
{name = "Chris Jones", email = "chrisjones4@u.boisestate.edu"},
{name = "Marjan Albooyeh", email = "marjanalbooyeh@u.boisestate.edu"},
{name = "Eric Jankowski", email = "ericjankowski@boisestate.edu"}
]
license= {text = "GPLv3"}
classifiers=[
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
urls = {Homepage = "https://github.com/cmelab/flowermd"}
requires-python = ">=3.10"
dynamic = ["version"]
[tool.setuptools]
zip-safe = false
include-package-data = true
license-files = ["LICENSE"]
[tool.setuptools.packages.find]
where = ["."]
include = ["flowermd*"]
exclude = ["tests*"]
[tool.setuptools.package-data]
flowermd = [
"modules/**",
"library/**",
"assets/forcefields/**",
"assets/molecule_files/**",
"utils/**",
"internal/**",
]
[tool.setuptools.dynamic]
version = {attr = "flowermd.__version__"}