File: setup.py

package info (click to toggle)
fibranet 10-3
  • links: PTS, VCS
  • area: main
  • in suites: lenny, squeeze, wheezy
  • size: 140 kB
  • ctags: 233
  • sloc: python: 1,031; makefile: 3
file content (27 lines) | stat: -rw-r--r-- 903 bytes parent folder | download | duplicates (3)
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
from ez_setup import use_setuptools
use_setuptools()

from setuptools import setup, find_packages
setup(
    name = "FibraNet",
    version = "10",
    packages = find_packages(),
    py_modules=['nanothreads','gherkin','nanotubes'],
    description='A cooperative threading and event driven framework with simple network capabilities.',
    author='Simon Wittber',
    author_email='simonwittber@gmail.com',
    license='BSD',
    platforms=['Any'],
    url="http://code.google.com/p/fibranet/",
    long_description="""
The FibraNet package provides an event dispatch mechanism, a cooperative scheduler, an asynchronous networking library
and a safe, fast serializer for simple Python types. It is designed to simplify applications which need to simulate concurrency, 
particularly games.

New in this Version:
===================
gherkin now efficiently encodes homogenous lists and tuples.
""" 
)