I was having trouble with PyPI ;)

This commit is contained in:
Mads Marquart
2017-06-22 23:35:28 +02:00
parent fbb8d8e24a
commit add06ffa7a
2 changed files with 5 additions and 2 deletions

View File

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

View File

@@ -16,6 +16,9 @@ except ImportError:
with open('README.rst') as f: with open('README.rst') as f:
readme_content = f.read().strip() readme_content = f.read().strip()
try:
requirements = [line.rstrip('\n') for line in open('fbchat.egg-info/requires.txt')]
except FileNotFoundError:
requirements = [line.rstrip('\n') for line in open('requirements.txt')] requirements = [line.rstrip('\n') for line in open('requirements.txt')]
version = None version = None