Skip to content

Commit 6903347

Browse files
committed
Created initial setup script version
1 parent 17a186a commit 6903347

File tree

1 file changed

+38
-0
lines changed

1 file changed

+38
-0
lines changed

setup.py

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
from setuptools import setup
2+
3+
version = "0.0.1"
4+
5+
with open('README.md') as f:
6+
long_description = f.read()
7+
8+
setup(
9+
name='pymavswarm',
10+
version=version,
11+
zip_safe=True,
12+
description='Python library used to communicate with robotic swarms using MAVLink',
13+
long_description_type='text/markdown',
14+
long_description=long_description,
15+
url='https://github.com/unl-nimbus-lab/pymavswarm',
16+
author='Evan Palmer',
17+
author_email='evanp922@gmail.com',
18+
classifiers=[
19+
'Development Status :: 3 - Alpha',
20+
'Intended Audience :: Science/Research',
21+
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
22+
'Operating System :: OS Independent',
23+
'Programming Language :: Python',
24+
'Topic :: Scientific/Engineering'
25+
],
26+
license='GPLv3',
27+
packages=[
28+
'pymavswarm'
29+
],
30+
setup_requires=[
31+
"setuptools",
32+
"wheel"
33+
],
34+
install_requires=[
35+
'pymavlink>=2.3.3',
36+
'pyserial>=3.0'
37+
],
38+
)

0 commit comments

Comments
 (0)