Skip to content

Commit

Permalink
Update to version 0.4.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
edparcell committed Aug 23, 2024
1 parent f4faf94 commit c5ddaf3
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 8 deletions.
6 changes: 3 additions & 3 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,17 +52,17 @@

# General information about the project.
project = 'loman'
copyright = '2017-2019, Ed Parcell'
copyright = '2017-2024, Ed Parcell'
author = 'Ed Parcell'

# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
# built documents.
#
# The short X.Y version.
version = '0.3.0'
version = '0.4.0'
# The full version, including alpha/beta/rc tags.
release = '0.3.0'
release = '0.4.0'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
13 changes: 8 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,24 @@

setup(
name='loman',
version='0.3.0',
version='0.4.0',
packages=['loman'],
url='https://github.com/janusassetallocation/loman',
license='BSD',
author='Ed Parcell',
author_email='[email protected]',
description='Loman tracks state of computations, and the dependencies between them, allowing full and partial recalculations.',
classifiers=[
'Development Status :: 3 - Alpha',
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7'
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12'
],
install_requires=['decorator', 'dill', 'pydotplus', 'networkx', 'pandas', 'matplotlib'],
extras_require={
Expand Down

0 comments on commit c5ddaf3

Please sign in to comment.