Skip to content

Commit

Permalink
created setup.py file, modified code to allow for setup.py usage
Browse files Browse the repository at this point in the history
  • Loading branch information
zxiiro committed Apr 4, 2010
1 parent ebe2823 commit fb1d18c
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
*.ogg
*.mkv
*~
dist
build
MANIFEST
freeseer_ui_qt.py
resource_rc.py
freeseer_about.py
14 changes: 14 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
from distutils.core import setup
setup(name='freeseer',
version='1.9.6',
description='video studio in a backpack',
author='fosslc',
author_email='fosslc@gmail.com',
url='http://wiki.github.com/fosslc/freeseer/',
license='GPLv3',
data_files=[('/etc/modprobe.d', ['src/modprobe.d/vga2usb.conf']),
('/etc/freeseer', ['src/config/logging.conf'])],
packages=['freeseer'],
package_dir={'freeseer': 'src'},
package_data={'freeseer': ['freeseer', 'talks.txt']},
)
Empty file added src/__init__.py
Empty file.
File renamed without changes.
2 changes: 1 addition & 1 deletion src/freeseer_core.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ class FreeseerCore:
Freeseer core logic code. Used to link a GUI frontend with a recording backend such as freeseer_gstreamer.py
'''
def __init__(self):
logging.config.fileConfig("logging.conf")
logging.config.fileConfig("config/logging.conf")
self.logger = logging.getLogger("root")
self.logger.info("Logging successfully started")
self.freeseer = Freeseer(self)
Expand Down
File renamed without changes.

0 comments on commit fb1d18c

Please sign in to comment.