-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
51 lines (44 loc) · 1.67 KB
/
setup.py
File metadata and controls
51 lines (44 loc) · 1.67 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
42
43
44
45
46
47
48
49
50
51
#!/usr/bin/python
# coding=utf-8
# Bootstrapped easy_install
from ez_setup import use_setuptools
use_setuptools(version='0.6c11')
from zupport.utilities.utilities import __version_info__
from setuptools import setup, find_packages
setup(
# basic package data
name = "zupport",
version = '.'.join([str(item) for item in __version_info__ ]),
author='Joona Lehtom\x84ki',
author_email='joona.lehtomaki@gmail.com',
license="MIT",
# package structure
packages=find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
package_dir={'zupport':'zupport'},
package_data={'zupport': ['data/*.xml',
'data/*.yaml',
'plugins/*/tools/*.yaml',
'resources/*.ini',
'resources/*qrc',
'resources/*.ui']},
# install the executables
entry_points = {
'console_scripts': [
'zupport = zupport.cli:main'],
'gui_scripts': [
'zupport_gui = zupport.gui:main']
},
install_requires = [
'configobj >= 4.7.2',
'docutils >= 0.5',
'nose >= 0.11.1',
'numpy >= 1.6.1',
'pyyaml >= 3.09',
'xlrd >= 0.7.1',
'zope.component >= 3.10.0',
'zope.interface >= 3.7.0'
],
# use nose to run tests
test_suite='nose.collector',
zip_safe=False,
)