Skip to content

Commit

Permalink
fix dependencies, release version 0.3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
mattwigway committed Dec 9, 2020
1 parent 8784096 commit 5150b14
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 16 deletions.
39 changes: 24 additions & 15 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,21 +4,30 @@
long_description = fh.read()

setup(
name='eqsormo',
version='0.3.12',
packages=find_packages('src'),
package_dir={'': 'src'},
requirements=['statsmodels>=0.11', 'tqdm>=4.0', 'numba>=0.51', 'numpy>=1.0', 'pandas>=1.0', 'dill>=0.3', 'scipy>=1.5'],
author='Matthew Wigginton Conway',
author_email='matt@indicatrix.org',
description='Equilibrium sorting models in Python',
long_description_content_type='text/markdown',
name="eqsormo",
version="0.3.13",
packages=find_packages("src"),
package_dir={"": "src"},
install_requires=[
"statsmodels",
"tqdm",
"numba",
"numpy",
"pandas",
"dill",
"pyarrow",
"scipy",
],
author="Matthew Wigginton Conway",
author_email="matt@indicatrix.org",
description="Equilibrium sorting models in Python",
long_description_content_type="text/markdown",
long_description=long_description,
url='https://github.com/mattwigway/eqsormo',
url="https://github.com/mattwigway/eqsormo",
classifiers=[
'Programming Language :: Python :: 3',
'Operating System :: OS Independent',
'License :: OSI Approved :: Apache Software License',
'Development Status :: 3 - Alpha'
]
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"License :: OSI Approved :: Apache Software License",
"Development Status :: 3 - Alpha",
],
)
2 changes: 1 addition & 1 deletion src/eqsormo/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
from .tra import TraSortingModel
from . import tra

version = "0.3.12"
version = "0.3.13"

rootLogger = None

Expand Down

0 comments on commit 5150b14

Please sign in to comment.