This repository was archived by the owner on May 9, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
50 lines (45 loc) · 1.4 KB
/
setup.py
File metadata and controls
50 lines (45 loc) · 1.4 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
'''
Flask-Cent
-----------
Flask-Cent is a flask extension for centrifugal/cent
'''
import os
import sys
from setuptools import setup
module_path = os.path.join(os.path.dirname(__file__), 'flask_cent.py')
version_line = [line for line in open(module_path)
if line.startswith('__version_info__')][0]
__version__ = '.'.join(eval(version_line.split('__version_info__ = ')[-1]))
setup(name='Flask-Cent',
version=__version__,
url='https://github.com/breakbase/flask-cent',
license='MIT',
author="BreakBase.com",
author_email='oss@breakbase.com',
description='centrifugal/cent client for flask',
long_description=__doc__,
keywords='flask cent centrifugo',
py_modules=['flask_cent'],
zip_safe=False,
platforms='any',
test_suite='nose.collector',
install_requires=[
'Flask',
'blinker',
'cent',
],
tests_require=[
'nose',
'blinker',
'speaklater',
'mock',
],
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules'
])