Skip to content

Commit 564c1d4

Browse files
Merge pull request #256 from paxtonfitzpatrick/master
update metadata fields
2 parents cca1753 + b9b9fd0 commit 564c1d4

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

setup.py

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
# -*- coding: utf-8 -*-
22
import os
3-
import subprocess
4-
import sys
53
from setuptools import setup, find_packages
6-
from setuptools.command.install import install
74

85

96
os.environ["MPLCONFIGDIR"] = "."
@@ -15,7 +12,7 @@
1512
URL = 'https://github.com/ContextLab/hypertools'
1613
DOWNLOAD_URL = URL
1714
LICENSE = 'MIT'
18-
REQUIRES_PYTHON = '>=3.5'
15+
REQUIRES_PYTHON = '>=3.6'
1916
PACKAGES = find_packages(exclude=('images', 'examples', 'tests'))
2017
with open('requirements.txt', 'r') as f:
2118
REQUIREMENTS = f.read().splitlines()
@@ -38,10 +35,10 @@
3835
"""
3936
CLASSIFIERS = [
4037
'Intended Audience :: Science/Research',
41-
'Programming Language :: Python :: 3.5',
4238
'Programming Language :: Python :: 3.6',
4339
'Programming Language :: Python :: 3.7',
4440
'Programming Language :: Python :: 3.8',
41+
'Programming Language :: Python :: 3.9',
4542
'Topic :: Scientific/Engineering :: Visualization',
4643
'Topic :: Multimedia :: Graphics',
4744
'Operating System :: POSIX',
@@ -57,7 +54,7 @@
5754
author=AUTHOR,
5855
author_email=AUTHOR_EMAIL,
5956
url=URL,
60-
download_url = DOWNLOAD_URL,
57+
download_url=DOWNLOAD_URL,
6158
license=LICENSE,
6259
python_requires=REQUIRES_PYTHON,
6360
packages=PACKAGES,

0 commit comments

Comments
 (0)