~ubuntu-branches/ubuntu/precise/fibranet/precise

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Bazaar Package Importer
  • Author(s): Varun Hiremath
  • Date: 2006-10-27 01:02:56 UTC
  • Revision ID: james.westby@ubuntu.com-20061027010256-n265y24bk98s9lbe
Tags: upstream-10
ImportĀ upstreamĀ versionĀ 10

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
from ez_setup import use_setuptools
 
2
use_setuptools()
 
3
 
 
4
from setuptools import setup, find_packages
 
5
setup(
 
6
    name = "FibraNet",
 
7
    version = "10",
 
8
    packages = find_packages(),
 
9
    py_modules=['nanothreads','gherkin','nanotubes'],
 
10
    description='A cooperative threading and event driven framework with simple network capabilities.',
 
11
    author='Simon Wittber',
 
12
    author_email='simonwittber@gmail.com',
 
13
    license='BSD',
 
14
    platforms=['Any'],
 
15
    url="http://code.google.com/p/fibranet/",
 
16
    long_description="""
 
17
The FibraNet package provides an event dispatch mechanism, a cooperative scheduler, an asynchronous networking library
 
18
and a safe, fast serializer for simple Python types. It is designed to simplify applications which need to simulate concurrency, 
 
19
particularly games.
 
20
 
 
21
New in this Version:
 
22
===================
 
23
gherkin now efficiently encodes homogenous lists and tuples.
 
24
""" 
 
25
)
 
26
 
 
27