-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.py
33 lines (30 loc) · 1.21 KB
/
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
27
28
29
30
31
32
33
#----------------------------------------------------------------------------
#
# Copyright (c) 2013-14, Enthought, Inc.
# All rights reserved.
#
# This software is provided without warranty under the terms of the BSD
# license included in /LICENSE.txt and may be redistributed only
# under the conditions described in the aforementioned license. The license
# is also available online at http://www.enthought.com/licenses/BSD.txt
#
# Thanks for using Enthought open source!
#
#----------------------------------------------------------------------------
from setuptools import setup, find_packages
setup(
name='traits-enaml',
version='0.4.0.dev',
author='Enthought, Inc',
author_email='info@enthought.com',
url='https://github.com/enthought/traits-enaml',
description='Utilities for interoperation between Traits and Enaml',
long_description=open('README.rst').read(),
packages=find_packages(),
package_data={'traits_enaml.testing.tests': ['*.enaml'],
'traits_enaml.widgets': ['*.enaml']},
install_requires=['enaml>=0.8.9', 'six', 'traits', 'traitsui'],
extras_require={
'enable': ['enable'],
'mayavi': ['mayavi'],
'opengl': ['pyopengl']})