Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fizxmike readme patch plus release action #30

Merged
merged 18 commits into from
Jul 20, 2024
Prev Previous commit
Next Next commit
Update setup.py
  • Loading branch information
fizxmike authored Jul 20, 2024
commit a41f337097fb8a076f3f9ae9710ff5c8f8fbef29
9 changes: 6 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,18 @@
setup(
name='pyesapi',
version='0.2.3',
description='Python interface to Eclipse Scripting API',
author='Michael Folkerts, Varian Medical Systems',
description='A customized Python interface to Eclipse Scripting API',
long_description='Leverages the pythonnet project to interface with dotnet CLI in real time. Helper functions and classes have been added to return numpy arrays and manage collections (of IEnumerable).'
author='Michael M. Folkerts, PhD at Varian, a Siemens Healthineers Company',
url='https://github.com/VarianAPIs/PyESAPI',
author_email='Michael.Folkerts@varian.com',
license='MIT',
packages=find_packages(),
python_requires=">=3.7, <4", # see up to date active releases here: https://www.python.org/downloads/
install_requires=[
'numpy',
'scipy',
'pythonnet', # v2.3.0 tested to work with python 3.6
'pythonnet',
'pynetdicom'
],
)
Loading