forked from christoph2/pyA2L
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
31 lines (27 loc) · 870 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
#!/bin/env/python
from distutils.core import setup, Extension
import os
from setuptools import find_packages
from glob import glob
def packagez(base):
return ["%s%s%s" % (base, os.path.sep, p) for p in find_packages(base)]
setup(
name = 'pya2l',
version = '0.1.0',
description = "A2L for Python",
author = 'Christoph Schueler',
author_email = '[email protected]',
url = 'https://www.github.com/Christoph2/pyA2L',
packages = ['pya2l'],
install_requires = ['antlr4-python2-runtime', 'enum34', 'mock', 'mako'],
#entry_points = {
# 'console_scripts': [
# 'vd_exporter = pyA2L.catalogue.vd_exporter:main'
# ],
#},
#data_files = [
# ('pya2l/config', glob('pya2l/config/*.*')),
# ('pya2l/imagez', glob('pya2l/imagez/*.bin')),
#],
test_suite="pya2l.tests"
)