-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (23 loc) · 752 Bytes
/
setup.py
File metadata and controls
24 lines (23 loc) · 752 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# from distutils.core import setup
from setuptools import setup, find_packages
import lvsm
setup(
name='lvsm',
version=lvsm.__version__,
author=lvsm.__author__,
author_email='khosrow@khosrow.ca',
packages=find_packages(exclude='tests'),
url='https://github.com/khosrow/lvsm',
license='LICENSE.rst',
description=lvsm.__doc__.strip(),
long_description="\n\n".join([open('README.rst').read(),
open('CHANGES.rst').read()]),
entry_points={
'console_scripts': [
'lvsm = lvsm.__main__:main',
'kaparser = lvsm.modules.kaparser:main',
],
},
test_suite="tests",
data_files=[('share/doc/lvsm/samples', ['samples/lvsm.conf.sample'])]
)