-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (28 loc) · 899 Bytes
/
Copy pathsetup.py
File metadata and controls
29 lines (28 loc) · 899 Bytes
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
from setuptools import setup
setup(
name='GaussOpt',
version='1.1.3',
author='John Garrett',
author_email='garrettj403@gmail.com',
description='Gaussian beam analysis',
license='MIT',
keywords='gaussian optics millimeter terahertz thz',
url='https://github.com/garrettj403/GaussOpt/',
packages=['gaussopt',],
install_requires=[
'matplotlib',
'numpy',
'scipy'
],
long_description=open('README.md').read(),
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Topic :: Scientific/Engineering :: Physics",
],
)