File: setup.py

package info (click to toggle)
python-autobahn 0.10.3%2Bdfsg1-3~bpo8%2B1
  • links: PTS, VCS
  • area: main
  • in suites: jessie-backports
  • size: 3,744 kB
  • sloc: python: 15,976; makefile: 333
file content (15 lines) | stat: -rw-r--r-- 331 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
from setuptools import setup, find_packages

setup(
    name='wamplet1',
    version='0.0.1',
    description='A demo WAMPlet.',
    platforms=['Any'],
    packages=find_packages(),
    entry_points={
        'autobahn.asyncio.wamplet': [
            'component1 = wamplet1.component1:make'
        ],
    },
    zip_safe=False,
)