|
5 | 5 |
|
6 | 6 | os.environ["MPLCONFIGDIR"] = "." |
7 | 7 |
|
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" |
13 | 13 | 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: |
18 | 18 | REQUIREMENTS = f.read().splitlines() |
19 | 19 |
|
20 | | -DESCRIPTION = 'A python package for visualizing and manipulating high-dimensional data' |
| 20 | +DESCRIPTION = "A python package for visualizing and manipulating high-dimensional data" |
21 | 21 | LONG_DESCRIPTION = """\ |
22 | 22 | 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). |
23 | 23 |
|
|
34 | 34 | - Support for lists of Numpy arrays, Pandas dataframes, String, Geos or mixed lists. |
35 | 35 | """ |
36 | 36 | 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", |
47 | 47 | ] |
48 | 48 |
|
49 | 49 | setup( |
|
59 | 59 | python_requires=REQUIRES_PYTHON, |
60 | 60 | packages=PACKAGES, |
61 | 61 | install_requires=REQUIREMENTS, |
62 | | - classifiers=CLASSIFIERS |
| 62 | + classifiers=CLASSIFIERS, |
63 | 63 | ) |
0 commit comments