-
Notifications
You must be signed in to change notification settings - Fork 21
/
setup.py
26 lines (24 loc) · 908 Bytes
/
setup.py
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
#------------------------------------------------------------------------------
# Copyright (c) 2011, Enthought, Inc.
# All rights reserved.
#------------------------------------------------------------------------------
# Copyright (c) 2011 by Enthought, Inc.
# All rights reserved.
from setuptools import setup, find_packages
setup(name='enaml',
version='0.1a',
author='Enthought, Inc',
author_email='info@enthought.com',
url='https://github.com/enthought/enaml',
description='Reactive language for building dynamic user interfaces with in Python',
long_description=open('README.rst').read(),
requires=['traits', 'PySide', 'ply', 'wx', 'argparse'],
install_requires=['distribute'],
packages=find_packages(),
entry_points = dict(
console_scripts = [
"enaml-run = enaml.runner:main",
],
),
test_suite = "enaml.test_collector"
)