Skip to content

Commit

Permalink
Fix up pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
IAlibay authored and richardjgowers committed Oct 27, 2023
1 parent 3b5d25c commit 94948b3
Show file tree
Hide file tree
Showing 3 changed files with 46 additions and 6 deletions.
45 changes: 45 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,51 @@ requires = [
build-backend = "setuptools.build_meta"


[project]
name = "pytng"
description = "Minimal Cython wrapper of the TNG trajectory library"
readme = "README.rst"
authors = [{name = "Max Linke, Richard J Gowers, Hugo MacDermott-Opeskin", email = "[email protected]"}]
maintainers = [{name = "MDAnalysis Core Developers", email = "[email protected]"}]
license = {file = "LICENSE.txt"}
classifiers = [
'Development Status :: 6 - Mature',
'Environment :: Console',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Operating System :: POSIX',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Programming Language :: Python',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: C',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Topic :: Scientific/Engineering :: Chemistry',
'Topic :: Software Development :: Libraries :: Python Modules',
]
urls = {Homepage = "http://mdanalysis.org/pytng"}
requires-python = ">= 3.9"
dependencies = [
"numpy>1.22.3",
]
dynamic = ["version"]


[project.optional-dependencies]
test = [
"pytest",
"pytest-cov",
]
docs = [
"sphinx",
"sphinx-rtd-theme",
"sphinx-sitemap",
]

[tool.versioningit]
default-version = "1+unknown"

Expand Down
6 changes: 0 additions & 6 deletions setup.cfg

This file was deleted.

1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ def extensions():
setup(
name="pytng",
python_requires=">=3.9",
install_requires=['numpy>=1.22.3'],
description='Minimal Cython wrapper of the TNG trajectory library',
long_description=long_description,
long_description_content_type='text/x-rst',
Expand Down

0 comments on commit 94948b3

Please sign in to comment.