-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (23 loc) · 810 Bytes
/
Copy pathsetup.py
File metadata and controls
23 lines (23 loc) · 810 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from setuptools import setup
setup(
name = 'optix',
packages = ['optix'],
version = '0.2.3',
license='MIT',
description = 'Optics simplified',
author = 'David Tomecek',
author_email = 'david.tomecek1@seznam.cz',
url = 'https://github.com/cavic19/optix',
download_url = 'https://github.com/cavic19/optix/archive/refs/tags/v0.2.3.tar.gz',
keywords = ['optics', 'geometric optics', 'matrix optics'],
install_requires=[
'numpy>=1.19.4',
],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.9',
],
)