-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·31 lines (25 loc) · 917 Bytes
/
setup.py
File metadata and controls
executable file
·31 lines (25 loc) · 917 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
#!/usr/bin/env python
from setuptools import setup
import sys, os
version = "0.0.1"
#acs_root = os.environ["ACS_ROOT"]
setup(name='ACSObjects',
version=version,
zip_safe=True,
description='ACS Analysis Libraries',
long_description='A suite of utility functions that facilitate analysis of interest to Aerial Combat Swarms',
url='coming soon',
author='NPS ARSENL Lab',
author_email='acray@nps.edu',
classifiers=[
'Devlopment Status :: 2 - Pre-Alpha',
'Environment :: X11 Applications ',
'Intended Audience :: Science/Research',
'License :: TBD',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 2.7',
'Topic :: Scienctific/Engineering'],
license='TBD',
packages=['ACSObjects'])
#,
# scripts=[acs_root + '/PX4Firmware/Tools/sdlog2/sdlog2_dump.py']