playwithfriends/setup.py

25 lines
596 B
Python
Raw Normal View History

2017-03-19 02:16:29 -04:00
from setuptools import setup, find_packages
from playwithfriends import __version__
print(find_packages())
setup(
name='Playwithfriends',
version=__version__,
packages=find_packages(),
install_requires=[
'requests >= 2.10.0',
2017-03-19 13:21:04 -04:00
'bottle >= 0.12.7',
'BeautifulSoup4 >= 3.2.1'
2017-03-19 02:16:29 -04:00
],
author='Bradlee Speice',
author_email='bradlee.speice@gmail.com',
2017-03-19 13:21:04 -04:00
description='Figure out what games you and your friends should play',
entry_points={
'console_scripts': [
'playwithfriends = playwithfriends.server:main'
]
}
2017-03-19 02:16:29 -04:00
)