Skip to content

Commit 471396e

Browse files
committed
Explicitly list requests as dependency
1 parent 6b02bce commit 471396e

1 file changed

Lines changed: 2 additions & 5 deletions

File tree

setup.py

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,20 +3,17 @@
33
with open("README.md", "r") as fh:
44
long_description = fh.read()
55

6-
with open('requirements.txt') as f:
7-
required = f.read().splitlines()
8-
96
setuptools.setup(
107
name = "nomics-python",
11-
version = "3.0.2",
8+
version = "3.0.3",
129
author = "Taylor Facen",
1310
author_email = "taylor.facen@gmail.com",
1411
description = "A python wrapper for the Nomics API",
1512
long_description = long_description,
1613
long_description_content_type = "text/markdown",
1714
url = "https://github.com/TaylorFacen/nomics-python",
1815
packages = setuptools.find_packages(),
19-
install_requires = required,
16+
install_requires = ['requests>=2'],
2017
classifiers = [
2118
"Programming Language :: Python :: 3",
2219
"License :: OSI Approved :: MIT License"

0 commit comments

Comments
 (0)