Skip to content

Commit

Permalink
Removed CR line endings
Browse files Browse the repository at this point in the history
  • Loading branch information
YHordijk committed Sep 17, 2024
1 parent 4ea291f commit edd18fe
Showing 1 changed file with 68 additions and 68 deletions.
136 changes: 68 additions & 68 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,68 +1,68 @@
[build-system]
requires = [
"setuptools>=69.5.1",
"wheel",
"gitpython",
"setuptools-git-versioning",
]
build-backend = "setuptools.build_meta"

[project]
name = "TCutility"

# Original authors
authors = [{ name = "TheoCheM group" }]
dependencies = [
"lxml==5.2.0",
"gitpython",
"numpy>=1.20.0",
"matplotlib>=3.4.0",
"attrs>=21.2.0",
"docx>=0.2.4",
"htmldocx>=0.0.6",
"plams",
"scipy>=1.8",
"dictfunc",
"listfunc",
"pytest>=7.4.4",
"openpyxl>=3.1.2",
"pandas>=1.3.0",
"platformdirs",
"requests",
]
# Current maintainers
maintainers = [{ name = "TheoCheM group" }]
license = { text = "MIT" }
description = "Utility package for working with AMS/ADF within the Theoretical Chemistry group at the Vrije Universiteit Amsterdam (TheoCheM). Makes use of plams - a package developed by SCM"
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dynamic = ["version"]

[tool.setuptools-git-versioning]
enabled = true
template = "{tag}"
dev_template = "{tag}"
dirty_template = "{tag}"

[tool.setuptools.packages.find]
where = ["src"] # list of folders that contain the packages (["."] by default)
include = [
"tcutility*",
] # package names should match these glob patterns (["*"] by default)
exclude = [
"tests*",
"docs*",
] # exclude packages matching these glob patterns (empty by default)
namespaces = false # to disable scanning PEP 420 namespaces (true by default)

[project.scripts]
tc = "tcutility.cli_scripts.tcparser:main"
[build-system]
requires = [
"setuptools>=69.5.1",
"wheel",
"gitpython",
"setuptools-git-versioning",
]
build-backend = "setuptools.build_meta"

[project]
name = "TCutility"

# Original authors
authors = [{ name = "TheoCheM group" }]
dependencies = [
"lxml==5.2.0",
"gitpython",
"numpy>=1.20.0",
"matplotlib>=3.4.0",
"attrs>=21.2.0",
"docx>=0.2.4",
"htmldocx>=0.0.6",
"plams",
"scipy>=1.8",
"dictfunc",
"listfunc",
"pytest>=7.4.4",
"openpyxl>=3.1.2",
"pandas>=1.3.0",
"platformdirs",
"requests",
]
# Current maintainers
maintainers = [{ name = "TheoCheM group" }]
license = { text = "MIT" }
description = "Utility package for working with AMS/ADF within the Theoretical Chemistry group at the Vrije Universiteit Amsterdam (TheoCheM). Makes use of plams - a package developed by SCM"
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dynamic = ["version"]

[tool.setuptools-git-versioning]
enabled = true
template = "{tag}"
dev_template = "{tag}"
dirty_template = "{tag}"

[tool.setuptools.packages.find]
where = ["src"] # list of folders that contain the packages (["."] by default)
include = [
"tcutility*",
] # package names should match these glob patterns (["*"] by default)
exclude = [
"tests*",
"docs*",
] # exclude packages matching these glob patterns (empty by default)
namespaces = false # to disable scanning PEP 420 namespaces (true by default)

[project.scripts]
tc = "tcutility.cli_scripts.tcparser:main"

0 comments on commit edd18fe

Please sign in to comment.