This repository was archived by the owner on Apr 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathsetup.py
More file actions
56 lines (54 loc) · 1.33 KB
/
setup.py
File metadata and controls
56 lines (54 loc) · 1.33 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
from setuptools import setup, find_packages
setup(
name='cloudplayer.api',
version='0.5.0.dev0',
author='Nicolas Drebenstedt',
author_email='hello@cloud-player.io',
url='https://cloud-player.io',
description='REST API for Cloud-Player',
packages=find_packages('src'),
package_dir={'': 'src'},
include_package_data=True,
zip_safe=False,
license='Apache-2.0',
namespace_packages=['cloudplayer'],
setup_requires=['setuptools_git'],
install_requires=[
'bugsnag',
'isodate',
'psycopg2-binary',
'pycurl',
'PyJWT',
'redis',
'setuptools',
'sqlalchemy',
'tornado'
],
extras_require={
'test': [
'asynctest',
'codecov',
'pylint',
'pytest-cov',
'pytest-pep8',
'pytest-postgresql==1.3.3',
'pytest-redis',
'pytest-remove-stale-bytecode',
'pytest-timeout',
'pytest-tornado',
'pytest'
],
'doc': [
'recommonmark',
'sphinx-autobuild',
'sphinx',
]
},
entry_points={
'console_scripts': [
'api=cloudplayer.api.app:main',
'pytest=pytest:main [test]',
'test=pytest:main [test]'
]
}
)