EMANE  1.2.1
setup.py
Go to the documentation of this file.
1 from distutils.core import setup
2 
3 setup(name='emane',
4  version='1.2.1',
5  description='EMANE modules and utilities',
6  long_description='EMANE modules and utilities',
7  author='Adjacent Link',
8  author_email='emane at adjacent link dot com',
9  url="https://github.com/adjacentlink/emane",
10  packages=['emane',
11  'emane.shell',
12  'emane.events',
13  'emane.ota',
14  'emane.info'],
15  scripts=['scripts/emanesh',
16  'scripts/emaneevent-dump',
17  'scripts/emaneevent-pathloss',
18  'scripts/emaneevent-commeffect',
19  'scripts/emaneevent-location',
20  'scripts/emaneevent-antennaprofile',
21  'scripts/emaneevent-tdmaschedule',
22  'scripts/emaneevent-fadingselection',
23  'scripts/emaneota-publisher',
24  'scripts/emanecommand-eel'],
25  package_data={'emane.shell' : ['schema/*.xsd'],
26  'emane.events' : ['schema/*.xsd'],
27  'emane.ota' : ['schema/*.xsd']},
28  license = 'BSD'
29  )
30 
Definition: setup.py:1