Skip to content

Commit

Permalink
Bump version number
Browse files Browse the repository at this point in the history
  • Loading branch information
edeno committed Sep 29, 2022
1 parent ef09bb5 commit ad6494a
Showing 1 changed file with 27 additions and 12 deletions.
39 changes: 27 additions & 12 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,35 @@

from setuptools import find_packages, setup

INSTALL_REQUIRES = ['numpy', 'statsmodels', 'numba', 'matplotlib',
'pandas', 'xarray', 'scipy', 'scikit-learn', 'scikit-image',
'regularized_glm', 'dask', 'patsy', 'networkx', 'joblib',
'track_linearization', 'tqdm', 'seaborn']
TESTS_REQUIRE = ['pytest >= 2.7.1']
INSTALL_REQUIRES = [
"numpy",
"statsmodels",
"numba",
"matplotlib",
"pandas",
"xarray",
"scipy",
"scikit-learn",
"scikit-image",
"regularized_glm",
"dask",
"patsy",
"networkx",
"joblib",
"track_linearization",
"tqdm",
"seaborn",
]
TESTS_REQUIRE = ["pytest >= 2.7.1"]

setup(
name='replay_trajectory_classification',
version='1.3.4',
license='MIT',
description=('Classify replay trajectories.'),
author='Eric Denovellis',
author_email='[email protected]',
url='https://github.com/Eden-Kramer-Lab/replay_trajectory_classification',
name="replay_trajectory_classification",
version="1.3.5",
license="MIT",
description=("Classify replay trajectories."),
author="Eric Denovellis",
author_email="[email protected]",
url="https://github.com/Eden-Kramer-Lab/replay_trajectory_classification",
packages=find_packages(),
install_requires=INSTALL_REQUIRES,
tests_require=TESTS_REQUIRE,
Expand Down

0 comments on commit ad6494a

Please sign in to comment.