|
1 | 1 | # -*- coding: utf-8 -*-
|
2 | 2 | import os
|
3 |
| -import subprocess |
4 |
| -import sys |
5 | 3 | from setuptools import setup, find_packages
|
6 |
| -from setuptools.command.install import install |
7 | 4 |
|
8 | 5 |
|
9 | 6 | os.environ["MPLCONFIGDIR"] = "."
|
|
15 | 12 | URL = 'https://github.com/ContextLab/hypertools'
|
16 | 13 | DOWNLOAD_URL = URL
|
17 | 14 | LICENSE = 'MIT'
|
18 |
| -REQUIRES_PYTHON = '>=3.5' |
| 15 | +REQUIRES_PYTHON = '>=3.6' |
19 | 16 | PACKAGES = find_packages(exclude=('images', 'examples', 'tests'))
|
20 | 17 | with open('requirements.txt', 'r') as f:
|
21 | 18 | REQUIREMENTS = f.read().splitlines()
|
|
38 | 35 | """
|
39 | 36 | CLASSIFIERS = [
|
40 | 37 | 'Intended Audience :: Science/Research',
|
41 |
| - 'Programming Language :: Python :: 3.5', |
42 | 38 | 'Programming Language :: Python :: 3.6',
|
43 | 39 | 'Programming Language :: Python :: 3.7',
|
44 | 40 | 'Programming Language :: Python :: 3.8',
|
| 41 | + 'Programming Language :: Python :: 3.9', |
45 | 42 | 'Topic :: Scientific/Engineering :: Visualization',
|
46 | 43 | 'Topic :: Multimedia :: Graphics',
|
47 | 44 | 'Operating System :: POSIX',
|
|
57 | 54 | author=AUTHOR,
|
58 | 55 | author_email=AUTHOR_EMAIL,
|
59 | 56 | url=URL,
|
60 |
| - download_url = DOWNLOAD_URL, |
| 57 | + download_url=DOWNLOAD_URL, |
61 | 58 | license=LICENSE,
|
62 | 59 | python_requires=REQUIRES_PYTHON,
|
63 | 60 | packages=PACKAGES,
|
|
0 commit comments