Skip to content

Commit a492d1e

Browse files
Restore install_requires using requirements.txt
1 parent 1cc07db commit a492d1e

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

setup.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@
55
with open("README.md", "r") as fh:
66
long_description = fh.read()
77

8+
with open('requirements.txt') as f:
9+
requirements = f.read().splitlines()
10+
811
setuptools.setup(
912
name="ipregistry",
1013
version=__version__,
@@ -14,6 +17,7 @@
1417
long_description=long_description,
1518
long_description_content_type="text/markdown",
1619
url="https://github.com/ipregistry/ipregistry-python",
20+
install_requires=requirements,
1721
packages=setuptools.find_packages(),
1822
classifiers=[
1923
"Programming Language :: Python :: 2",

0 commit comments

Comments
 (0)