-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
32 lines (26 loc) · 813 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
29
30
31
32
"""
python-can requires the setuptools package to be installed.
"""
from setuptools import setup, find_packages
__version__ = 1.4
import logging
logging.basicConfig(level=logging.WARNING)
setup(
name="python-can",
url="https://bitbucket.org/hardbyte/python-can",
version=__version__,
packages=find_packages(),
author="Brian Thorne",
author_email="hardbyte@gmail.com",
description="Controller Area Network interface module for Python",
long_description=open('README.md').read(),
license="LGPL v3",
package_data={
"": ["CONTRIBUTORS.txt", "LICENSE.txt"],
"doc": ["*.*"]
},
scripts=["./bin/can_logger.py", './bin/j1939_logger.py'],
# Tests can be run using `python setup.py test`
test_suite="nose.collector",
tests_require=['mock']
)