-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
42 lines (37 loc) · 1006 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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
from setuptools import setup, find_packages
import os
version = '0.9.11.dev0'
def read(*rnames):
return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
long_description = (
read('README.rst')
+ '\n' +
read('js', 'socketio', 'test_socketio.txt')
+ '\n' +
read('CHANGES.txt'))
setup(
name='js.socketio',
version=version,
description="fanstatic socketio.",
long_description=long_description,
classifiers=[],
keywords='fanstatic socketio redturtle',
author='RedTurtle Developers',
url='https://github.com/RedTurtle/js.socketio',
author_email='sviluppoplone@redturtle.it',
license='BSD',
packages=find_packages(),
namespace_packages=['js'],
include_package_data=True,
zip_safe=False,
install_requires=[
'fanstatic',
'js.jquery',
'setuptools',
],
entry_points={
'fanstatic.libraries': [
'socketio = js.socketio:library',
],
},
)