Skip to content

Commit

Permalink
Update setup scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
smathot committed Jul 28, 2016
1 parent dde8cee commit 2a09072
Show file tree
Hide file tree
Showing 10 changed files with 16 additions and 71 deletions.
23 changes: 0 additions & 23 deletions debian/changelog

This file was deleted.

1 change: 0 additions & 1 deletion debian/compat

This file was deleted.

18 changes: 0 additions & 18 deletions debian/control

This file was deleted.

10 changes: 0 additions & 10 deletions debian/copyright

This file was deleted.

3 changes: 0 additions & 3 deletions debian/rules

This file was deleted.

2 changes: 1 addition & 1 deletion pygaze/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
from distutils.version import StrictVersion
import os

__version__ = version = u'0.6.0a12'
__version__ = version = u'0.6.0a13'
strict_version = StrictVersion(__version__)
# The version without the prerelease (if any): e.g. 3.0.0
main_version = u'.'.join([str(i) for i in strict_version.version])
Expand Down
8 changes: 0 additions & 8 deletions pygaze/_eyetracker/baseeyetracker.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,14 +54,6 @@ class BaseEyeTracker:
"""
desc: |
A generic Python library for eye tracking.
__Function list:__
%--
toc:
mindepth: 2
maxdepth: 2
--%
"""

def __init__(self):
Expand Down
2 changes: 2 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[bdist_wheel]
universal=1
14 changes: 7 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,19 +45,19 @@ def data_files():
"""

return [
("opensesame_plugins/pygaze_init/resources/locale",
("share/opensesame_plugins/pygaze_init/resources/locale",
files("opensesame_plugins/pygaze_init/resources/locale/*")),
("opensesame_plugins/pygaze_init",
("share/opensesame_plugins/pygaze_init",
files("opensesame_plugins/pygaze_init/*")),
("opensesame_plugins/pygaze_drift_correct",
("share/opensesame_plugins/pygaze_drift_correct",
files("opensesame_plugins/pygaze_drift_correct/*")),
("opensesame_plugins/pygaze_log",
("share/opensesame_plugins/pygaze_log",
files("opensesame_plugins/pygaze_log/*")),
("opensesame_plugins/pygaze_start_recording",
("share/opensesame_plugins/pygaze_start_recording",
files("opensesame_plugins/pygaze_start_recording/*")),
("opensesame_plugins/pygaze_stop_recording",
("share/opensesame_plugins/pygaze_stop_recording",
files("opensesame_plugins/pygaze_stop_recording/*")),
("opensesame_plugins/pygaze_wait",
("share/opensesame_plugins/pygaze_wait",
files("opensesame_plugins/pygaze_wait/*"))
]

Expand Down
6 changes: 6 additions & 0 deletions stdeb.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
[DEFAULT]
Source=python-pygaze
Package=python-pygaze
Debian-version=1
Suite=xenial
Copyright-File=copyright

0 comments on commit 2a09072

Please sign in to comment.