-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (31 loc) · 1.04 KB
/
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
31
32
33
34
import setuptools
import os
version = '1.0.0'
with open(os.path.join(os.path.dirname(__file__), 'README.md')) as f:
LongDescription = f.read()
setuptools.setup(
name='kidronekit',
zip_safe=True,
version=version,
description='Premium extended version of dronekit.',
long_description_content_type="text/markdown",
long_description=LongDescription,
url='https://github.com/kirinslab/kidronekit.git',
author='3D Robotics, Kirinlab',
install_requires=[
'pymavlink>=2.2.20',
'monotonic>=1.3',
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering',
],
license='apache',
packages=setuptools.find_packages()
)