Compare commits
3 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
add06ffa7a | ||
|
fbb8d8e24a | ||
|
cd0e001219 |
@@ -9,7 +9,7 @@ fbchat: Facebook Chat (Messenger) for Python
|
|||||||
:target: https://pypi.python.org/pypi/fbchat
|
:target: https://pypi.python.org/pypi/fbchat
|
||||||
:alt: Supported python versions: 2.7, 3.4, 3.5 and 3.6
|
:alt: Supported python versions: 2.7, 3.4, 3.5 and 3.6
|
||||||
|
|
||||||
.. image:: https://readthedocs.org/projects/fbchat/badge/
|
.. image:: https://readthedocs.org/projects/fbchat/badge/?version=master
|
||||||
:target: https://fbchat.readthedocs.io
|
:target: https://fbchat.readthedocs.io
|
||||||
:alt: Documentation
|
:alt: Documentation
|
||||||
|
|
||||||
|
@@ -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'
|
||||||
|
3
setup.py
3
setup.py
@@ -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
|
||||||
|
Reference in New Issue
Block a user