Skip to content

Commit 125a09b

Browse files
committed
Bump version to 0.8.2
1 parent 60c9fe2 commit 125a09b

File tree

1 file changed

+21
-21
lines changed

1 file changed

+21
-21
lines changed

setup.py

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -5,19 +5,19 @@
55

66
os.environ["MPLCONFIGDIR"] = "."
77

8-
NAME = 'hypertools'
9-
VERSION = '0.8.1'
10-
AUTHOR = 'Contextual Dynamics Lab'
11-
AUTHOR_EMAIL = 'contextualdynamics@gmail.com'
12-
URL = 'https://github.com/ContextLab/hypertools'
8+
NAME = "hypertools"
9+
VERSION = "0.8.2"
10+
AUTHOR = "Contextual Dynamics Lab"
11+
AUTHOR_EMAIL = "contextualdynamics@gmail.com"
12+
URL = "https://github.com/ContextLab/hypertools"
1313
DOWNLOAD_URL = URL
14-
LICENSE = 'MIT'
15-
REQUIRES_PYTHON = '>=3.9'
16-
PACKAGES = find_packages(exclude=('images', 'examples', 'tests'))
17-
with open('requirements.txt', 'r') as f:
14+
LICENSE = "MIT"
15+
REQUIRES_PYTHON = ">=3.9"
16+
PACKAGES = find_packages(exclude=("images", "examples", "tests"))
17+
with open("requirements.txt", "r") as f:
1818
REQUIREMENTS = f.read().splitlines()
1919

20-
DESCRIPTION = 'A python package for visualizing and manipulating high-dimensional data'
20+
DESCRIPTION = "A python package for visualizing and manipulating high-dimensional data"
2121
LONG_DESCRIPTION = """\
2222
HyperTools is a library for visualizing and manipulating high-dimensional data in Python. It is built on top of matplotlib (for plotting), seaborn (for plot styling), and scikit-learn (for data manipulation).
2323
@@ -34,16 +34,16 @@
3434
- Support for lists of Numpy arrays, Pandas dataframes, String, Geos or mixed lists.
3535
"""
3636
CLASSIFIERS = [
37-
'Intended Audience :: Science/Research',
38-
'Programming Language :: Python :: 3.9',
39-
'Programming Language :: Python :: 3.10',
40-
'Programming Language :: Python :: 3.11',
41-
'Programming Language :: Python :: 3.12',
42-
'Topic :: Scientific/Engineering :: Visualization',
43-
'Topic :: Multimedia :: Graphics',
44-
'Operating System :: POSIX',
45-
'Operating System :: Unix',
46-
'Operating System :: MacOS'
37+
"Intended Audience :: Science/Research",
38+
"Programming Language :: Python :: 3.9",
39+
"Programming Language :: Python :: 3.10",
40+
"Programming Language :: Python :: 3.11",
41+
"Programming Language :: Python :: 3.12",
42+
"Topic :: Scientific/Engineering :: Visualization",
43+
"Topic :: Multimedia :: Graphics",
44+
"Operating System :: POSIX",
45+
"Operating System :: Unix",
46+
"Operating System :: MacOS",
4747
]
4848

4949
setup(
@@ -59,5 +59,5 @@
5959
python_requires=REQUIRES_PYTHON,
6060
packages=PACKAGES,
6161
install_requires=REQUIREMENTS,
62-
classifiers=CLASSIFIERS
62+
classifiers=CLASSIFIERS,
6363
)

0 commit comments

Comments
 (0)