-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
executable file
·25 lines (22 loc) · 977 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
#!/usr/bin/env python
from setuptools import setup
import os
d = os.path.join(os.path.abspath(os.sep), 'usr', 'share', 'timmy-customtest')
d_files = [(os.path.join(d, root), [os.path.join(root, f) for f in files])
for root, dirs, files in os.walk('rq')]
d_files.append((os.path.join(d), ['timmy-config-default.yaml', 'rq.yaml']))
d_files += [(os.path.join(d, root), [os.path.join(root, f) for f in files])
for root, dirs, files in os.walk('db')]
setup(name='timmy-customtest',
version='1.2.14',
author='Dmitry Sutyagin',
author_email='f3flight@gmail.com',
license='Apache2',
url='https://github.com/f3flight/timmy-customtest',
long_description=open('README.md').read(),
packages=["timmy_customtest"],
install_requires=['timmy'],
data_files=d_files,
include_package_data=True,
entry_points={'console_scripts':
['timmy-customtest=timmy_customtest.customtest:main']})