File tree Expand file tree Collapse file tree 1 file changed +38
-0
lines changed Expand file tree Collapse file tree 1 file changed +38
-0
lines changed Original file line number Diff line number Diff line change
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
+ )
You can’t perform that action at this time.
0 commit comments