-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e3f841b
commit bef7094
Showing
2 changed files
with
22 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,23 @@ | ||
[build-system] | ||
requires = [ | ||
"setuptools>=42", | ||
"wheel" | ||
requires = ["setuptools>=61.0"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "ctsimu" | ||
version = "1.6.0" | ||
authors = [ | ||
{ name="David Plotzki", email="[email protected]" }, | ||
] | ||
build-backend = "setuptools.build_meta" | ||
description = "CTSimU Software Toolbox" | ||
readme = "README.md" | ||
requires-python = ">=3.9" | ||
classifiers = [ | ||
"Programming Language :: Python :: 3", | ||
"License :: OSI Approved :: Apache Software License", | ||
"Operating System :: OS Independent", | ||
"Natural Language :: English", | ||
"Topic :: Multimedia :: Graphics :: Graphics Conversion" | ||
] | ||
|
||
[project.urls] | ||
"Homepage" = "https://github.com/BAMresearch/ctsimu-toolbox/" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,16 +6,14 @@ | |
setuptools.setup(name='ctsimu', | ||
version='1.6.0', | ||
description='CTSimU Software Toolbox', | ||
url='https://bamresearch.github.io/ctsimu-toolbox/', | ||
url='https://github.com/BAMresearch/ctsimu-toolbox/', | ||
author='David Plotzki', | ||
author_email='[email protected]', | ||
long_description=long_description, | ||
long_description_content_type="text/markdown", | ||
packages=['ctsimu', 'ctsimu.processing', 'ctsimu.scenario', 'ctsimu.image_analysis', 'ctsimu.evaluation'], | ||
python_requires='>=3.9', | ||
install_requires=['numpy', 'scipy'], | ||
include_package_data=True, | ||
license="Apache 2.0", | ||
classifiers=[ | ||
"Programming Language :: Python :: 3", | ||
"License :: OSI Approved :: Apache Software License", | ||
|