We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1cc07db commit a492d1eCopy full SHA for a492d1e
setup.py
@@ -5,6 +5,9 @@
5
with open("README.md", "r") as fh:
6
long_description = fh.read()
7
8
+with open('requirements.txt') as f:
9
+ requirements = f.read().splitlines()
10
+
11
setuptools.setup(
12
name="ipregistry",
13
version=__version__,
@@ -14,6 +17,7 @@
14
17
long_description=long_description,
15
18
long_description_content_type="text/markdown",
16
19
url="https://github.com/ipregistry/ipregistry-python",
20
+ install_requires=requirements,
21
packages=setuptools.find_packages(),
22
classifiers=[
23
"Programming Language :: Python :: 2",
0 commit comments