Skip to content
This repository has been archived by the owner on Aug 31, 2021. It is now read-only.

Fixes #19 Add requirements.txt and install deps from there itself even in pip installation #20

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
include requirements.txt
File renamed without changes.
3 changes: 3 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
pyOpenSS>= 0.12
gevent>= 1.1.0
PyYAML>= 3.09
13 changes: 7 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,12 @@
except ImportError:
from distutils.core import setup

#Pull version out of the module
# Pull version out of the module
from pyaib import __version__

with open('requirements.txt') as f:
requirements = f.read().splitlines()

setup(name='pyaib',
version=__version__,
packages=['pyaib', 'pyaib.dbd', 'pyaib.util'],
Expand All @@ -38,8 +41,6 @@
'Intended Audience :: Developers',
'Development Status :: 5 - Production/Stable',
],
install_requires=[
'pyOpenSSL >= 0.12',
'gevent >= 1.1.0',
'PyYAML >= 3.09',
])
include_package_data=True,
install_requires=requirements
)