-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
41 lines (39 loc) · 1010 Bytes
/
Copy pathsetup.py
File metadata and controls
41 lines (39 loc) · 1010 Bytes
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
from setuptools import setup
setup(
name='statify',
version='1.3.0',
packages=[
'statify',
'statify.webserver',
],
package_data={
'statify.webserver': ['static/*', 'templates/*'],
},
entry_points={
'console_scripts': [
'statify=statify.statify:main',
'statify_webserver=statify.webserver.webserver:main'
]
},
description="Pull your playlist and listening data from the Spotify API",
author='@foobuzz',
author_email='foobuzz@fastmail.com',
url='https://github.com/foobuzz/statify',
install_requires=[
'pypika==0.35.14',
'pyyaml==5.3.1',
'setuptools==49.1.0',
'spotipy==2.16.0',
'flask==2.1.2',
],
extras_require={
'tests': {
'flake8==3.8.4',
'pytest==5.4.3',
'pytest-flask==1.2.0',
'pytest-mock==3.1.1',
'pyfakefs==4.0.2',
'responses==0.10.15',
},
},
)