-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (27 loc) · 1.07 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
from distutils.core import setup
from glob import glob
setup(
name='fsq',
version='0.1.3',
author='Matthew Story',
author_email='[email protected]',
packages=['fsq', 'fsq.tests'],
scripts=['bin/fsq'],
data_files=[('share/man/man1', ['man/man1/fsq.1',
'man/man1/fsq-down.1',
'man/man1/fsq-enqueue.1',
'man/man1/fsq-scan.1',
'man/man1/fsq-up.1',
'man/man1/fsq-install.1']),
('share/man/man7', ['man/man7/fsq.7']),
('libexec/fsq', ['libexec/fsq/down.py',
'libexec/fsq/enqueue.py',
'libexec/fsq/install.py',
'libexec/fsq/scan.py',
'libexec/fsq/up.py']),
],
url='https://github.com/axialmarket/fsq',
license='3-BSD',
description='File System Queue',
long_description=open('README.md').read(),
)