Skip to content

Commit

Permalink
Merge pull request #256 from paxtonfitzpatrick/master
Browse files Browse the repository at this point in the history
update metadata fields
  • Loading branch information
paxtonfitzpatrick authored Feb 12, 2022
2 parents cca1753 + b9b9fd0 commit 564c1d4
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
# -*- coding: utf-8 -*-
import os
import subprocess
import sys
from setuptools import setup, find_packages
from setuptools.command.install import install


os.environ["MPLCONFIGDIR"] = "."
Expand All @@ -15,7 +12,7 @@
URL = 'https://github.com/ContextLab/hypertools'
DOWNLOAD_URL = URL
LICENSE = 'MIT'
REQUIRES_PYTHON = '>=3.5'
REQUIRES_PYTHON = '>=3.6'
PACKAGES = find_packages(exclude=('images', 'examples', 'tests'))
with open('requirements.txt', 'r') as f:
REQUIREMENTS = f.read().splitlines()
Expand All @@ -38,10 +35,10 @@
"""
CLASSIFIERS = [
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Topic :: Scientific/Engineering :: Visualization',
'Topic :: Multimedia :: Graphics',
'Operating System :: POSIX',
Expand All @@ -57,7 +54,7 @@
author=AUTHOR,
author_email=AUTHOR_EMAIL,
url=URL,
download_url = DOWNLOAD_URL,
download_url=DOWNLOAD_URL,
license=LICENSE,
python_requires=REQUIRES_PYTHON,
packages=PACKAGES,
Expand Down

0 comments on commit 564c1d4

Please sign in to comment.