This repository has been archived by the owner on Feb 17, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
68 lines (65 loc) · 2.87 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/python
# -*- coding: utf8 -*-
#
# bullseye - ccd laser beam profilers (pydc1394 + chaco)
# Copyright (C) 2012 Robert Jordens <[email protected]>
#
# This program 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.
#
# This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
from setuptools import setup, find_packages
setup(
name = "bullseye",
version = "0.1.1+dev",
description = "laser beam profiler",
long_description = """
Bullseye is a laser beam analysis application. Images can be
acquired from any USB or Firewire camera using the DC1394
standard supported by pydc1394 or pyflycapture2 from
pointgrey. The beam analysis mostly adheres to ISO-11146
and determines centroid, 4-sigma width (~1/e^2 intensity
width), rotation and ellipticity. The user interface is
build on enthought/{traits, chaco}.""",
author = "Robert Jordens",
author_email = "[email protected]",
url = "http://launchpad.net/pybullseye",
license = "GPLv3+",
keywords = "laser beam profiler ccd camera gaussian",
install_requires = [
"numpy", "traits>=4", "chaco", "traitsui"],
extras_require = {
"pydc1394": ["pydc1394"],
"flycapture2": ["pyflycapture2"],
},
#dependency_links = [],
packages = find_packages(),
#namespace_packages = [],
#test_suite = "bullseye.tests.test_all",
entry_points = {
"gui_scripts": ["bullseye = bullseye.app:main"],
},
include_package_data = True,
classifiers = [f.strip() for f in """
Development Status :: 4 - Beta
Environment :: X11 Applications :: GTK
Environment :: X11 Applications :: Qt
Intended Audience :: Science/Research
Intended Audience :: Telecommunications Industry
License :: OSI Approved :: GNU General Public License (GPL)
Operating System :: OS Independent
Programming Language :: Python :: 2
Topic :: Multimedia :: Graphics :: Capture :: Digital Camera
Topic :: Multimedia :: Video :: Capture
Topic :: Multimedia :: Video :: Display
Topic :: Scientific/Engineering :: Physics
""".splitlines() if f.strip()],
)