Skip to content

Commit

Permalink
Preparations towards odak 0.2.5.
Browse files Browse the repository at this point in the history
  • Loading branch information
kaanaksit committed Dec 19, 2023
1 parent 4ffaef8 commit c202142
Show file tree
Hide file tree
Showing 2 changed files with 43 additions and 43 deletions.
2 changes: 1 addition & 1 deletion odak/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
import logging


version_info = 0, 2, 4
version_info = 0, 2, 5
__version__ = '.'.join(map(str, version_info))
pi = np.pi

Expand Down
84 changes: 42 additions & 42 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,46 +14,46 @@ def read(fname):
install_requires = f.read().splitlines()

setup(
name="odak",
version="0.2.4",
author="Kaan Akşit",
author_email="kaanaksit@kaanaksit.com",
description="Odak, the fundamental Python library for scientific computing in optical sciences.",
license=read('LICENSE.txt'),
keywords="optics, holography, perception, graphics",
url="https://github.com/kaanaksit/odak",
install_requires=install_requires,
packages=[
'odak',
'odak/raytracing',
'odak/fit',
'odak/jones',
'odak/tools',
'odak/wave',
'odak/learn/wave',
'odak/learn/models',
'odak/learn/tools',
'odak/learn/perception',
'odak/learn/raytracing',
'odak/visualize',
'odak/visualize/blender',
'odak/manager',
'odak/measurement',
'odak/catalog',
'odak/learn'
],
package_dir={'odak': 'odak'},
package_data={'odak': ['catalog/data/*.json']},
data_files=[
('', ['LICENSE.txt', 'README.md', 'THANKS.txt', 'requirements.txt', 'short_readme.md'])],
long_description=read('short_readme.md'),
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'Topic :: Scientific/Engineering :: Physics',
'Programming Language :: Python',
'License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)',
],
python_requires='>=3.7.5',
name = "odak",
version = "0.2.5",
author = "Kaan Akşit",
author_email = "kaanaksit@kaanaksit.com",
description = "Odak, the fundamental Python library for scientific computing in optical sciences.",
license = read('LICENSE.txt'),
keywords = "optics, holography, perception, graphics",
url = "https://github.com/kaanaksit/odak",
install_requires = install_requires,
packages = [
'odak',
'odak/raytracing',
'odak/fit',
'odak/jones',
'odak/tools',
'odak/wave',
'odak/learn/wave',
'odak/learn/models',
'odak/learn/tools',
'odak/learn/perception',
'odak/learn/raytracing',
'odak/visualize',
'odak/visualize/blender',
'odak/manager',
'odak/measurement',
'odak/catalog',
'odak/learn'
],
package_dir = {'odak': 'odak'},
package_data = {'odak': ['catalog/data/*.json']},
data_files = [
('', ['LICENSE.txt', 'README.md', 'THANKS.txt', 'requirements.txt', 'short_readme.md'])],
long_description = read('short_readme.md'),
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'Topic :: Scientific/Engineering :: Physics',
'Programming Language :: Python',
'License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)',
],
python_requires = '>=3.7.5',
)

0 comments on commit c202142

Please sign in to comment.