File: setup.py

package info (click to toggle)
txws 0.9.1-5
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 124 kB
  • sloc: python: 352; makefile: 7
file content (16 lines) | stat: -rwxr-xr-x 403 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/usr/bin/env python

from setuptools import setup

setup(
    name="txWS",
    py_modules=["txws"],
    setup_requires=["vcversioner", "six"],
    vcversioner={},
    author="Corbin Simpson",
    author_email="simpsoco@osuosl.org",
    description="Twisted WebSockets wrapper",
    long_description=open("README.rst").read(),
    license="MIT/X11",
    url="http://github.com/MostAwesomeDude/txWS",
)