We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6b02bce commit 471396eCopy full SHA for 471396e
1 file changed
setup.py
@@ -3,20 +3,17 @@
3
with open("README.md", "r") as fh:
4
long_description = fh.read()
5
6
-with open('requirements.txt') as f:
7
- required = f.read().splitlines()
8
-
9
setuptools.setup(
10
name = "nomics-python",
11
- version = "3.0.2",
+ version = "3.0.3",
12
author = "Taylor Facen",
13
author_email = "taylor.facen@gmail.com",
14
description = "A python wrapper for the Nomics API",
15
long_description = long_description,
16
long_description_content_type = "text/markdown",
17
url = "https://github.com/TaylorFacen/nomics-python",
18
packages = setuptools.find_packages(),
19
- install_requires = required,
+ install_requires = ['requests>=2'],
20
classifiers = [
21
"Programming Language :: Python :: 3",
22
"License :: OSI Approved :: MIT License"
0 commit comments