-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (21 loc) · 852 Bytes
/
setup.py
File metadata and controls
22 lines (21 loc) · 852 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from distutils.core import setup
from setuptools import find_packages
setup(
name='pyesapi',
version='0.2.5',
description='A customized Python interface to Eclipse Scripting API',
long_description='Leverages the pythonnet project to interface with dotnet CLI to launch a stand-alone instance of ESAPI runtime. Helper functions and classes have been added to return numpy arrays and manage collections (of IEnumerable).',
author='Michael M. Folkerts',
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',
'pynetdicom',
'pywin32'
],
)