Skip to content

Commit

Permalink
trying to add a simple pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
stephen-dixon committed Apr 14, 2024
1 parent 347061a commit 5a67ded
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
8 changes: 8 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
[build-system]
requires = ["setuptools>=42"]
build-backend = "setuptools.build_meta"


[project]
name = "ukaea-pyuda"
version = "2.7.5"
6 changes: 3 additions & 3 deletions source/wrappers/python/setup.py.in
Original file line number Diff line number Diff line change
Expand Up @@ -79,13 +79,13 @@ ext = Extension(
)

setup(
name='@PROJECT_NAME@',
name='ukaea-pyuda',
version='@PROJECT_VERSION@',
description='Unified Data Access (UDA)',
author='Jonathan Hollocombe',
author_email='jonathan.hollocombe@ukaea.uk',
url='https://github.com/ukaea/UDA',
packages=['pyuda'],
url='https://github.com/stephen-dixon/uda',
packages=['ukaea-pyuda'],
ext_modules=cythonize([ext]),
setup_requires=['numpy>=1.7', 'Cython>=0.29', 'six'],
install_requires=['numpy>=1.7', 'six'],
Expand Down

0 comments on commit 5a67ded

Please sign in to comment.