mirror of
https://github.com/bspeice/playwithfriends
synced 2025-02-10 12:30:06 -05:00
25 lines
596 B
Python
25 lines
596 B
Python
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',
|
|
'bottle >= 0.12.7',
|
|
'BeautifulSoup4 >= 3.2.1'
|
|
],
|
|
author='Bradlee Speice',
|
|
author_email='bradlee.speice@gmail.com',
|
|
description='Figure out what games you and your friends should play',
|
|
entry_points={
|
|
'console_scripts': [
|
|
'playwithfriends = playwithfriends.server:main'
|
|
]
|
|
}
|
|
)
|