-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
60 lines (58 loc) · 1.83 KB
/
setup.py
File metadata and controls
60 lines (58 loc) · 1.83 KB
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='piicodev',
version='1.11.0',
description='Drivers for the PiicoDev ecosystem of sensors and modules',
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/CoreElectronics/CE-PiicoDev-PyPI",
author="Core Electronics",
author_email="production.inbox@coreelectronics.com.au",
packages=find_packages("src"), # include all packages under src
package_dir={'': 'src'}, # tell distutils packages are under src
include_package_data=True, # include everything in source control
package_data={'': ['*.dat']},
py_modules=[
"PiicoDev_Unified",
"PiicoDev_MPU6050",
"PiicoDev_TMP117",
"PiicoDev_VEML6030",
"PiicoDev_VL53L1X",
"PiicoDev_BME280",
"PiicoDev_MS5637",
"PiicoDev_VEML6040",
"PiicoDev_CAP1203",
"PiicoDev_SSD1306",
"PiicoDev_RGB",
"PiicoDev_Buzzer",
"PiicoDev_QMC6310",
"PiicoDev_RFID",
"PiicoDev_RFID_Expansion",
"PiicoDev_RV3028",
"PiicoDev_LIS3DH",
"PiicoDev_Potentiometer",
"PiicoDev_ENS160",
"PiicoDev_Switch",
"PiicoDev_Servo",
"PiicoDev_Transceiver",
"PiicoDev_Ultrasonic",
"PiicoDev_MMC5603",
],
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: Implementation :: MicroPython",
"License :: OSI Approved :: MIT License",
],
install_requires = [
"smbus2>=0.4.1"
],
extras_require = {
"dev": [
"pytest>=3.7",
],
},
)