pyaidrone 1.1__tar.gz → 1.2__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of pyaidrone might be problematic. Click here for more details.

pyaidrone-1.2/PKG-INFO ADDED
@@ -0,0 +1,23 @@
1
+ Metadata-Version: 2.1
2
+ Name: pyaidrone
3
+ Version: 1.2
4
+ Summary: Library for AIDrone Products
5
+ Home-page: http://www.ir-brain.com
6
+ Author: IR-Brain
7
+ Author-email: ceo@ir-brain.com
8
+ Classifier: Programming Language :: Python :: 3
9
+ Classifier: License :: OSI Approved :: MIT License
10
+ Classifier: Operating System :: OS Independent
11
+ Requires-Python: >=3.6
12
+ Description-Content-Type: text/markdown
13
+
14
+ ## install pyaidrone
15
+
16
+ > python setup.py install
17
+ > or
18
+ > python install pyaidrone
19
+
20
+ ### install Packages
21
+
22
+ > pip install pyserial
23
+ > pip install pynput
@@ -0,0 +1 @@
1
+ __version__ = '1.2'
@@ -3,7 +3,7 @@ from pyaidrone.deflib import *
3
3
  class Parse:
4
4
  def __init__(self, model=AIDRONE):
5
5
  self.model = model
6
- self.packet = bytearray(20)
6
+ self.packet = bytearray(100)
7
7
  self.offset = 0
8
8
  self.type = 0
9
9
  self.packetLen = 20
@@ -0,0 +1,23 @@
1
+ Metadata-Version: 2.1
2
+ Name: pyaidrone
3
+ Version: 1.2
4
+ Summary: Library for AIDrone Products
5
+ Home-page: http://www.ir-brain.com
6
+ Author: IR-Brain
7
+ Author-email: ceo@ir-brain.com
8
+ Classifier: Programming Language :: Python :: 3
9
+ Classifier: License :: OSI Approved :: MIT License
10
+ Classifier: Operating System :: OS Independent
11
+ Requires-Python: >=3.6
12
+ Description-Content-Type: text/markdown
13
+
14
+ ## install pyaidrone
15
+
16
+ > python setup.py install
17
+ > or
18
+ > python install pyaidrone
19
+
20
+ ### install Packages
21
+
22
+ > pip install pyserial
23
+ > pip install pynput
pyaidrone-1.2/setup.py ADDED
@@ -0,0 +1,23 @@
1
+ from setuptools import setup, find_packages
2
+
3
+ setup(
4
+ name="pyaidrone",
5
+ version="1.2",
6
+ description="Library for AIDrone Products",
7
+ long_description=open("README.md").read(), # README.md 내용을 long_description으로 사용
8
+ long_description_content_type="text/markdown", # README 파일이 markdown 형식임을 지정
9
+ author="IR-Brain",
10
+ author_email="ceo@ir-brain.com",
11
+ url="http://www.ir-brain.com",
12
+ packages=find_packages(), # find_packages()를 사용해 서브패키지까지 자동 탐색
13
+ install_requires=[
14
+ 'pyserial>=3.4',
15
+ 'pynput>=1.7.3',
16
+ ],
17
+ classifiers=[ # 추가 메타데이터
18
+ "Programming Language :: Python :: 3",
19
+ "License :: OSI Approved :: MIT License", # 실제 라이선스를 설정해야 함
20
+ "Operating System :: OS Independent",
21
+ ],
22
+ python_requires='>=3.6', # 최소 Python 버전 요구 사항 설정
23
+ )
pyaidrone-1.1/PKG-INFO DELETED
@@ -1,7 +0,0 @@
1
- Metadata-Version: 2.1
2
- Name: pyaidrone
3
- Version: 1.1
4
- Summary: Library for AIDrone Products
5
- Home-page: http://www.ir-brain.com
6
- Author: IR-Brain
7
- Author-email: ceo@ir-brain.com
@@ -1 +0,0 @@
1
- __version__ = '1.0'
@@ -1,7 +0,0 @@
1
- Metadata-Version: 2.1
2
- Name: pyaidrone
3
- Version: 1.1
4
- Summary: Library for AIDrone Products
5
- Home-page: http://www.ir-brain.com
6
- Author: IR-Brain
7
- Author-email: ceo@ir-brain.com
pyaidrone-1.1/setup.py DELETED
@@ -1,16 +0,0 @@
1
- from setuptools import setup, find_packages
2
-
3
- setup(
4
- name = "pyaidrone",
5
- version = "1.1",
6
- description = "Library for AIDrone Products",
7
- author = "IR-Brain",
8
- author_email = "ceo@ir-brain.com",
9
- url = "http://www.ir-brain.com",
10
- packages = ['pyaidrone',
11
- ],
12
- install_requires = [
13
- 'pyserial>=3.4',
14
- 'pynput>=1.7.3',
15
- ],
16
- )
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes