-
Notifications
You must be signed in to change notification settings - Fork 68
/
Copy pathsetup.py
44 lines (41 loc) · 1.71 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#-------------------------------------------------------------------------------
# Name: setup.py
# Purpose: Standard module installation script
# Licence: MIT License
# This file is subject to the terms and conditions of the MIT License.
# For further details, please refer to LICENSE.txt
#-------------------------------------------------------------------------------
"""
This script will install the PyZDDE library into your Lib/site-packages directory
as a standard Python module. It can then be imported like any other module package.
"""
from setuptools import setup, find_packages
with open('README.rst') as fh:
long_description = fh.read()
setup(
name='PyZDDE',
version='2.0.3',
description='Zemax / OpticStudio standalone extension using Python',
long_description=long_description,
author='Indranil Sinharoy',
author_email='[email protected]',
license='MIT',
keywords='zemax opticstudio extensions dde optics',
url='https://github.com/indranilsinharoy/PyZDDE',
packages=find_packages(),
include_package_data=True,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'Natural Language :: English',
'Environment :: Win32 (MS Windows)',
'License :: OSI Approved :: MIT License',
'Operating System :: Microsoft :: Windows :: Windows XP',
'Operating System :: Microsoft :: Windows :: Windows 7',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Topic :: Scientific/Engineering',
],
)