Skip to content

Commit

Permalink
Changed pyproject toml file for release
Browse files Browse the repository at this point in the history
  • Loading branch information
thivinanandh committed May 11, 2024
1 parent 03b927a commit ba6a012
Show file tree
Hide file tree
Showing 3 changed files with 45 additions and 2 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
[![Integration tests](https://github.com/cmgcds/fastvpinns/actions/workflows/integration-tests.yml/badge.svg)](https://github.com/cmgcds/fastvpinns/actions/workflows/integration-tests.yml)
[![Compatability check](https://github.com/cmgcds/fastvpinns/actions/workflows/compatibility-tests.yml/badge.svg)](https://github.com/cmgcds/fastvpinns/actions/workflows/compatibility-tests.yml)
[![codecov](https://codecov.io/gh/cmgcds/fastvpinns/graph/badge.svg?token=NI9G37R2Q7)](https://codecov.io/gh/cmgcds/fastvpinns)
![PyPI](https://badge.fury.io/py/fastvpinns.svg)](https://badge.fury.io/py/fastvpinns)

[![MIT License](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT)
[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)
Expand Down
44 changes: 43 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,45 @@
[build-system]
requires = ["setuptools==68.2.2"]
build-backend = "setuptools.build_meta"

[project]
name = "fastvpinns"
version = "1.0.0"
authors = [
{ name="Thivin Anandh", email="thivinanandh@gmail.com" },
{ name="Divij Ghose", email="divijghose@gmail.com" },
{ name="Sashikumaar Ganesan", email="sashi@iisc.ac.in" }
]
description = "A fast tensor-driven variational physics-informed neural network library for solving PDEs."
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules"
]


[project.urls]
Homepage = "https://github.com/cmgcds/fastvpinns"
Issues = "https://github.com/cmgcds/fastvpinns/issues"
Documentation = "https://cmgcds.github.io/fastvpinns/"
logo = "https://raw.githubusercontent.com/cmgcds/fastvpinns/main/Fastvpinns_logo.png"

[tool.black]
line-length = 100
target-version = ['py39']
Expand All @@ -16,4 +58,4 @@ exclude = '''
)/
'''
skip-string-normalization = true
skip-magic-trailing-comma = true
skip-magic-trailing-comma = true
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
author_email="thivinanandh@gmail.com",
description="An Efficient tensor-based implementation of hp-Variational Physics-informed Neural Networks (VPINNs) for solving PDEs",
packages=find_packages(),
license="MIT",
# license="MIT",
install_requires=requirements,
keywords=['variational PINNs', 'VPINNs', 'PINNs', 'Physics-informed neural networks', 'Deep learning', 'Machine learning']
)

0 comments on commit ba6a012

Please sign in to comment.