Skip to content

Commit

Permalink
update metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
paxtonfitzpatrick committed Feb 12, 2022
1 parent cca1753 commit b9b9fd0
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions setup.py
@@ -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 b9b9fd0

Please sign in to comment.