~mapclient.devs/mapclient/stable

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: musculoskeletal
  • Date: 2014-06-25 05:38:05 UTC
  • mfrom: (1.6.35 testing)
  • Revision ID: musculoskeletal@bioeng1033-20140625053805-jkqhi5oq74vmlntl
Merging testing into stable.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#!/usr/bin/env python
2
2
 
3
 
from setuptools import setup
 
3
from setuptools import setup, find_packages
4
4
 
5
5
 
6
6
setup(name='mapclient',
7
 
     version='0.10.1',
 
7
     version='0.11.0',
8
8
     description='A framework for managing and sharing workflows.',
9
9
     author='MAP Client Developers',
10
10
     author_email='mapclient-devs@physiomeproject.org',
11
11
     url='https://launchpad.net/mapclient',
12
 
     packages=['mapclient.core', 'mapclient.mountpoints', 'mapclient.settings', 'mapclient.tools', 'mapclient.tools.annotation', 'mapclient.tools.pluginwizard', 'mapclient.tools.pmr', 'mapclient.tools.pmr.jsonclient', 'mapclient.widgets'],
13
 
     package_dir={'mapclient': 'src'},
 
12
     namespace_packages=['mapclient', ],
 
13
     packages=find_packages(exclude=['tests', 'tests.*', ]),
14
14
     package_data={'mapclient.tools.annotation': ['annotation.voc']},
15
 
     py_modules=['mapclient.mapclient'],
16
 
     entry_points={'console_scripts':['mapclient=mapclient.mapclient:winmain']},
17
 
     install_requires=['PySide', 'requests', 'oauthlib'],
 
15
     #py_modules=['mapclient.mapclient'],
 
16
     entry_points={'console_scripts': ['mapclient=mapclient.application:winmain']},
 
17
     install_requires=[
 
18
        'PySide',
 
19
        'requests-oauthlib',
 
20
        'pmr.wfctrl',
 
21
    ],
18
22
)