Skip to content

Commit

Permalink
add pyproject file
Browse files Browse the repository at this point in the history
  • Loading branch information
srmnitc committed Feb 15, 2024
1 parent 35769f7 commit 7daa1f1
Showing 1 changed file with 42 additions and 0 deletions.
42 changes: 42 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"

[project]
name = 'pyscal_rdf'
version = '0.1.6'
authors = [
{name = "Abril Azocar Guzman", email = "[email protected]"},
{name = "Sarath Menon", email = "[email protected]"},
]
maintainers = [
{name = "Sarath Menon", email = "[email protected]"}
]
description = 'Ontology based structural manipulation and quering'
readme = "README.md"
license = {text = "MIT License"}
keywords = ["ontology", "research-data-management", "rdm", "computational-materials-science", "atomic-simulation", "atomic-structures"]
classifiers=[
'Programming Language :: Python :: 3'
]
dependencies=['numpy',
'ase',
'rdflib',
'pyyaml',
'graphviz',
'networkx',
'ipycytoscape',
'pyscal3',
'spglib',
]

[project.urls]
Homepage = "https://pyscal.org"
Documentation = "https://rdf.pyscal.org"
Repository = "https://github.com/pyscal/pyscal_rdf"

[tool.setuptools.packages.find]
where = ["pyscal_rdf/data"]

[tool.setuptools.package-data]
mypkg = ["*.owl", "*.yml"]

0 comments on commit 7daa1f1

Please sign in to comment.