Compare commits

...

1 Commits

Author SHA1 Message Date
Mads Marquart
9d5f06b810 Fixed pip setup 2017-09-30 19:17:40 +02:00
2 changed files with 7 additions and 5 deletions

View File

@@ -17,7 +17,7 @@ from .client import *
__copyright__ = 'Copyright 2015 - {} by Taehoon Kim'.format(datetime.now().year)
__version__ = '1.0.22'
__version__ = '1.0.23'
__license__ = 'BSD'
__author__ = 'Taehoon Kim; Moreels Pieter-Jan; Mads Marquart'
__email__ = 'carpedm20@gmail.com'

View File

@@ -16,10 +16,12 @@ except ImportError:
with open('README.rst') as f:
readme_content = f.read().strip()
try:
requirements = [line.rstrip('\n') for line in open(os.path.join('fbchat.egg-info', 'requires.txt'))]
except IOError:
requirements = [line.rstrip('\n') for line in open('requirements.txt')]
requirements = [
'requests',
'lxml',
'beautifulsoup4',
"enum34; python_version == '2.7'"
]
version = None
author = None