Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 17 additions & 17 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
from setuptools.command.test import test as TestCommand


if sys.version_info < (3, 6):
raise ValueError('This package requires python >= 3.6')
if sys.version_info < (3, 8):
raise ValueError('This package requires python >= 3.8')

with open('requirements.txt') as fid:
install_requires = [l.strip() for l in fid.readlines() if l]
Expand Down Expand Up @@ -43,20 +43,20 @@ def run_tests(self):


setup(
name = 'datascience',
packages = ['datascience'],
python_requires='>=3.6',
version = version,
install_requires = install_requires,
tests_require = tests_requires,
cmdclass = {'test': PyTest},
description = 'A Jupyter notebook Python library for introductory data science',
long_description = 'A Jupyter notebook Python library for introductory data science',
author = 'John DeNero, David Culler, Alvin Wan, Sam Lau',
author_email = '[email protected]',
url = 'https://github.com/data-8/datascience',
download_url = 'https://github.com/data-8/datascience/archive/%s.zip' % version,
keywords = ['data', 'tools', 'berkeley'],
classifiers = [],
name='datascience',
packages=['datascience'],
python_requires='>=3.8',
version=version,
install_requires=install_requires,
tests_require=tests_requires,
cmdclass={'test': PyTest},
description='A Jupyter notebook Python library for introductory data science',
long_description='A Jupyter notebook Python library for introductory data science',
author='John DeNero, David Culler, Alvin Wan, Sam Lau',
author_email='[email protected]',
url='https://github.com/data-8/datascience',
download_url='https://github.com/data-8/datascience/archive/%s.zip' % version,
keywords=['data', 'tools', 'berkeley'],
classifiers=[],
package_data={"datascience": ["geodata/*.csv"]}
)
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# and then run "tox" from this directory.

[tox]
envlist = py36, py37, py38
envlist = py38, py39, py310, py311
skip_missing_interpreters = true

[testenv]
Expand Down