-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
25 lines (24 loc) · 812 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
from setuptools import setup, find_packages
setup(
name = "radiocrepe",
version = "0.1",
author = "Pedro Ferreira",
author_email = "[email protected]",
description = ("An office jukebox"),
license = "BSD",
keywords = "radio play music",
url = "http://github.com/pferreir",
packages=find_packages(),
long_description=open('README.md', 'r').read(),
classifiers=[
],
include_package_data=True,
package_data={
'radiocrepe': ['*.sql']
},
install_requires=['mutagen', 'Flask', 'python-magic', 'sqlalchemy',
'gevent', 'gevent-websocket', 'flask-oauth', 'requests',
'flask-assets'],
entry_points={'console_scripts': "radiocrepe=radiocrepe.main:main"},
dependency_links=[],
zip_safe=False)