-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (21 loc) · 758 Bytes
/
setup.py
File metadata and controls
26 lines (21 loc) · 758 Bytes
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
from setuptools import setup, find_packages
import sdist_upip
setup(
name="micropython-max30102",
version="0.4.2",
description="MAX30102 driver for micropython.",
long_description=open("README.md").read(),
long_description_content_type='text/markdown',
url="https://github.com/n-elia/MAX30102-MicroPython-driver",
license="MIT",
keywords=["micropython", "max30102", "max30105", "esp32"],
author="Nicola Elia",
maintainer="Nicola Elia",
classifiers=[
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: Implementation :: MicroPython",
],
cmdclass={"sdist": sdist_upip.sdist},
packages=find_packages()
)