forked from pySART/pyccp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (29 loc) · 962 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
#!/bin/env python
import os
from setuptools import setup, find_packages
from glob import glob
def packagez(base):
return ["{0!s}{1!s}{2!s}".format(base, os.path.sep, p) for p in find_packages(base)]
setup(
name = 'pyccp',
version = '0.9.0',
provides = ['pyccp'],
description = "CAN Calibration Protocol for Python",
author = 'Christoph Schueler',
author_email = '[email protected]',
url = 'http://github.com/pySART/pyccp',
packages = packagez('pyccp'),
install_requires = ['enum34', 'future', 'mako'], # 'mock'
#entry_points = {
# 'console_scripts': [
# 'readelf.py = objutils.tools.readelf:main',
# ],
#},
#data_files = [
# ('objutils/tests/ELFFiles', glob('objutils/tests/ELFFiles*.*')),
#],
package_dir = {'tests': 'pyccp/tests'},
#package_data = {'tests': ['ELFFiles/*.*']},
#include_package_data = True,
test_suite = "pyccp.tests"
)