forked from Exopy/exopy
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
41 lines (37 loc) · 1.4 KB
/
setup.py
File metadata and controls
41 lines (37 loc) · 1.4 KB
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
34
35
36
37
38
39
40
41
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
import os.path
import sys
sys.path.insert(0, os.path.abspath('.'))
from ecpy.version import __version__
setup(
name='ecpy',
description='Experiment control application',
version=__version__,
long_description='',
author='Ecpy Developers (see AUTHORS)',
author_email='m.dartiailh@gmail.com',
url='http://github.com/ecpy/ecpy',
download_url='http://github.com/ecpy/ecpy/tarball/master',
keywords='experiment automation GUI',
license='BSD',
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Topic :: Scientific/Engineering :: Physics',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
],
zip_safe=False,
packages=find_packages(exclude=['tests', 'tests.*']),
package_data={'': ['*.enaml', '*.txt']},
requires=['future', 'pyqt4', 'atom', 'enaml', 'kiwisolver', 'configobj',
'watchdog', 'setuptools', 'qtawesome'],
install_requires=['setuptools', 'future', 'atom', 'enaml', 'kiwisolver',
'configobj', 'watchdog', 'qtawesome'],
entry_points={'gui_scripts': 'ecpy = ecpy.__main__:main'}
)