-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (25 loc) · 852 Bytes
/
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
from distutils.core import setup
from distutils.command.install import INSTALL_SCHEMES
# this is the way I've found to install the sound files
# in the package folder
for scheme in INSTALL_SCHEMES.values():
scheme['data'] = scheme['purelib']
sound_files = [ 'sounds/lets_play.wav',
'sounds/chewy.wav',
'sounds/available.wav']
setup(
name='bubbledoro',
version='0.0.1',
author='Jose Ricardo',
author_email='root@josericardo.eti.br',
packages=['bubbledoro'],
scripts=['bin/bubbledoro'],
url='http://pypi.python.org/pypi/bubbledoro/',
license='LICENSE.txt',
description='A command line pomodoro counter and goals tracker.',
long_description=open('README.md').read(),
data_files=[('bubbledoro', sound_files)],
include_package_data=True,
install_requires=[
],
)