-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathsetup.py
More file actions
40 lines (33 loc) · 1004 Bytes
/
setup.py
File metadata and controls
40 lines (33 loc) · 1004 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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
"""
python-j1939 requires the setuptools package to be installed.
"""
import logging
from setuptools import setup, find_packages
__version__ = "0.1.0-alpha.3"
logging.basicConfig(level=logging.WARNING)
setup(
name="python-j1939",
url="https://github.com/milhead2/python-j1939.git",
version=__version__,
packages=find_packages(),
author="David 'Miller' Lowe",
author_email="milhead@gmail.com",
description="SAE J1939 module for Python",
long_description=open('README.rst').read(),
license="LGPL v3",
package_data={
"": ["CONTRIBUTORS.txt", "LICENSE.txt"],
"doc": ["*.*"]
},
install_requires=["python-can>=2.0.0a2"],
scripts=[
"./bin/j1939_logger.py",
"./bin/j1939_mem_query.py",
"./bin/j1939_mem_set.py",
"./bin/j1939_request_pgn.py",
"./bin/j1939_send_pgn.py"
],
# Tests can be run using `python setup.py test`
test_suite="nose.collector",
tests_require=['mock', 'nose']
)