-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·66 lines (63 loc) · 2.31 KB
/
setup.py
File metadata and controls
executable file
·66 lines (63 loc) · 2.31 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
# TODO: add meaningful long description
# First, write it to Readme.md
# then, copy it here and document in process to transfer all Readme updates
long_description = "Software for test measurement equipment platform."
# options reference: https://docs.python.org/2/distutils/
setup(
name="easy_phi",
packages=['easy_phi', 'scripts'],
version="0.4",
license="GPL v3.0",
description='Easy Phi project web application',
long_description=long_description,
author='Team Quantum',
author_email='shadeless@ya.ru',
url='https://github.com/QuantumCMU/easy_phi_API',
download_url='http://github.com/QuantumCMU/easy_phi_API/archive/master.zip',
keywords=['measurement equipment', 'SCPI', 'udev', 'TMC', 'VISA'],
classifiers=( # see https://pypi.python.org/pypi?%3Aaction=list_classifiers
"Programming Language :: Python :: 2",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: POSIX :: Linux",
"Development Status :: 1 - Planning",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: "
"Interface Engine/Protocol Translator",
),
entry_points = {
'console_scripts': ['easy_phi = easy_phi.app:main']
},
data_files=[
('/etc', ['scripts/easy_phi.conf']),
('/etc/udev/rules.d', ['scripts/99-easy_phi-modules.rules']),
('/etc/easy_phi', ['scripts/modules_conf_patches.conf',
'scripts/widgets.conf']),
],
package_data={
'scripts': ['*'],
'easy_phi': ['templates/*.html',
'static/js/*.js',
'static/css/*.css',
'static/css/themes/redmond/*.css',
'static/css/themes/redmond/images/*.png',
'static/css/themes/smoothness/*.css',
'static/css/themes/smoothness/images/*.png',
'static/favicon.ico'
'static/robots.txt'
],
},
install_requires=[
'tornado',
'pyudev',
'pyserial',
'dicttoxml',
'pkgtools',
'pip',
'keyring',
'futures', # Python 2 only
],
# TODO: add unit tests
)