-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
31 lines (27 loc) · 889 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
from setuptools import find_packages
from glob import glob
setup(
name = 'kosek', # pySART.kosek
version = '0.9.2rc-1',
description = "'Konnex-Operationg System based on the OSEK/VDX-Standard'-Distribution",
author = 'Christoph Schueler',
author_email = '[email protected]',
url = 'https://www.github.com/Christoph2/k-os',
packages = ['kosek', 'kosek.ApplicationDefinition', 'kosek.ImplementationDefinition'],
#namespace_packages = ['pySART'],
data_files = [
#('kosek/config/oil', glob('config/oil/*.oil')),
('kosek/config/templates', glob('config/templates/*.tmpl')),
],
install_requires = ['mako', ],
entry_points = {
'console_scripts': [
'kosgen = kosek.kosgen:main',
],
# 'gui_scripts': [
# 'baz = my_package_gui.start_func',
# ]
}
)