Commit e6475fc1 authored by Jérome Perrin's avatar Jérome Perrin

use buildout

parent 5be1bd87
This diff is collapsed.
; For now you must run this buildout on a python where numpy and scipy are
; installed, for example using system packages
[buildout]
develop = .
parts = interpreter test
[interpreter]
recipe = zc.recipe.egg
interpreter = python
eggs = dream
[test]
recipe = zc.recipe.testrunner
eggs = dream
from setuptools import setup, find_packages
setup(
name='dream',
version='0.0.1',
license='LGPL',
packages=find_packages('.'),
package_dir={'': '.', 'simulation': 'simulation'},
install_requires=[
'flask',
'Simpy',
'xlrd',
'xlwt',
],
entry_points=("""
[console_scripts]
dream_platform=dream.platform:main
dream_simulation=simulation.LineGenerationJSON:main
"""),
include_package_data=True,
zip_safe=False,
)
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment