forked from dursobr/Pythics
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
68 lines (65 loc) · 2.5 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# Copyright 2010 - 2015 Brian R. D'Urso
#
# This file is part of Python Instrument Control System, also known as Pythics.
#
# Pythics is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# Pythics is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with Pythics. If not, see <http://www.gnu.org/licenses/>.
#
#
# The module can be installed by typing
# python setup.py install
#
# Relevant files:
# setup.py - controls the whole build
# MANIFEST.in - adds additional files/dirs added to the source build
#
# More information at:
# http://docs.python.org/distutils/index.html
#
# Make the source package with:
# python setup.py sdist
#
# Make the windows exe with:
# python setup.py bdist_wininst --user-access-control='force'
#
from distutils.core import setup
setup(name='pythics',
version='0.7.3',
description='Python Instrument Control System',
author='Brian R. D\'Urso',
author_email='[email protected]',
url='http://code.google.com/p/pythics/',
packages=['pythics', 'pythics.help', 'pythics.examples',
'pythics.instruments', 'pythics.schema'],
package_dir={'pythics': 'pythics'},
package_data={'pythics': ['pythics_icon.ico', '*.txt'],
'pythics.help':['*.xml', '*.png', '*.jpg', '*.txt'],
'pythics.examples':['*.xml', '*.png', '*.jpg', '*.txt', '*.csv'],
'pythics.schema':['*.xsd', '*.xml']},
scripts=['scripts/postinstall.py'],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Programming Language :: Python',
'Topic :: Scientific/Engineering',
'Topic :: Software Development',
],
)